This is my code:
[delegate performSelectorOnMainThread:@selector(setVariablePremierAffichage:) withObject:TRUE waitUntilDone:NO];
The problem is that the argument “withObject” only takes an “id” type, so, how can I cast my value “TRUE” to an id type? I also use ARC memory management in Xcode for iOS 5.
Pass an
NSNumber. UseboolNumber = [NSNumber numberWithBool:TRUE]. Your method should be defined as: