hi,
I have a question on how to use a selector with multiple parameters. I need to toggle this:
-(void)openBackupNamed:(NSString *)name
using this:
[backupList addItemWithTitle:file action:@selector(openBackupNamed:) keyEquivalent:@""];
I know that there is the withObject:
parameter for these cases, but I can't do this in the addItemWithTitle:action:keyEquivalent:
method or am I missing something?
Thanks