My code here(METHOD DEFINITION)
- (void)info:(NSString *)idno info1:(NSString *)package info2:(NSString *)rate info3:(NSString *)type info4:(NSString *)status;
{
//CODE HERE
}
My code here(METHOD CALLING)
[self performSelector:@selector(info:info1: info2:info3:info4:) withObject:@"a" withObject:@"b" withObject:@"c" withObject:@"d" withObject:@"e" ];
MY app displays the fallowing error:
No visible @interface for 'ViewController' declares the selector 'performSelector:withObject:withObject:withObject:withObject:withObject:'
Please help how to solve this problem