I have an IBAction that when triggered calls another method in a different view controller ( APICallsViewController). I\'m looking to also send that method an NSString (m
Why do you want to pass the String programmatically, instead of declaring a function parameter? You could change the Function to something like
- (void) apiGraphUserCheckins:(NSString *)message;
call it with
[apiViewController apiGraphUserCheckins:[NSString stringWithFormat:@"Check out %@", nameLb.text]];