iOS How to implement a performSelector with multiple arguments
NSArray * arrayOfThingsIWantToPassAlong =
[NSArray arrayWithObjects: @"first", @"second", nil];
[self performSelector:@selector(fooFirstInput:)
withObject:arrayOfThingsIWantToPassAlong
afterDelay:15.0];
- (void) fooFirstInput:(
NSArray
*)
arrayOfThings
{ }
Comments
Post a Comment