So right now I am using auto layout and figured out that when I make a if statement about intersecting, auto layout automatically puts the images back into their starting place.
I have tried many intersecting statements for example:
if (CGRectIntersectsRect(Poop.frame, toilet.frame)) {
}
and
if(distance < (Poop.bounds.size.width/2.0 + toilet.bounds.size.width/2.0)){
}
AutoLayout just doesn't seem to cooperate with intersections! Please help me.