Advertise here




Advertise here

Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

Sign In with Google Sign In with OpenID
Please do not post the same thing multiple times. The board software automatically flags certain posts as needing moderator attention. This happens the most often for new users. I'm pretty sure this is made clear at the time you attempt to post. Posting the same thing over and over again just makes that many more posts the moderators have to weed through later. This makes us sad. Don't make us sad. If your post/thread doesn't appear, just wait a while. Don't post it again. If it hasn't shown up by the next day, then you can try again. I normally go through posts in the mornings, and try to check a few times throughout the day, but I'm not here 24/7. There will typically be a significant delay before posts are approved. Just be patient.

Why isnt my CGPoint detector working?

KenenthKenenth Posts: 35Registered Users
In my app, there are objects that go in certain directions on the screen based on variables that are stored into an NSMutableArray. To save memory, once these items go off the screen, I would like to remove them from the array and the view. Here is my code, but it doesnt seem to be working. I have tryed NSLogging or putting in breakpoints to see if it works, but even when the objects go off of the screen, it doesnt do anything. Could someone please tell me what to do to fix it? Thanks in advance.


for(int control=0;control<[randomObjectArray count];control++){
UIImageView *randomObject = [randomObjectArray objectAtIndex:control];
if(randomObject.center.x==0){

[randomObject removeFromSuperview];
[randomObjectArray removeObjectAtIndex:control];
randomObject = nil;
NSLog(@\"Removed randomObject from the Array\");

}
Post edited by Kenenth on

Replies

Sign In or Register to comment.