Hey, Hope you guys can help me here
I am looping through menutime using this callback when a user clicks on an item:
-(void) showArcade: (id)sender {
for(id item in [menuArcade children]){
[item unselected];
}
[sender selected];
}
Basically what I am trying to do is set the unselected image for all items, then select the one that was called on. But for some reason it's not working. Anyone have any ideas