if I am having a function
-(void)setName:(NSString *)name setAddress:(NSString *)address
{
}
how can I call the above function in
[self performSelector:<#(SEL)#> withObject:<#(id)#> afterDelay:<#(NSTimeInterval)#>];
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use NSDictionary as the argument, and you have to define the function to accept the dictionary
Then you can assign the value by getting the corresponding data in the dictionary