Why after updating to iOS 9 does this line of code not work?
The warning is Undeclared selector 'performThisMethod:_ImageData
The app crashes on the [self performSelector:]
[self performSelector:@selector(performThisMethod:_ImageData:)withObject:nil afterDelay:0.05f];
-(void) performThisMethod : (NSData *) data {
NSLog(@"Testing this Method");
}
What has Apple changed?