Tony @ Buzztouch
buzztouch Evangelist
Profile
Posts: 528
Reg: Mar 05, 2011
Saint Louis, Mi...
24,620
06/24/14 08:24 AM (9 years ago)

Custom Tabs

Anyone locked this down yet in your project? Handle custom command in your code Scringo notifies your app when a user selects a custom command, by posting an NSNotification. To receive this notification do as follow: [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(myCommandClicked:) name:kScringoCustomButtonClicked object:nil]; Now add the following method which will be called when someone selects your custom command: -(void)myCommandClicked:(NSNotification *)aNotification { NSLog(@"User selected my custom command. Command id is =%@", [aNotification userInfo]); // The rest of your code }
 

Login + Screen Name Required to Post

pointerLogin to participate so you can start earning points. Once you're logged in (and have a screen name entered in your profile), you can subscribe to topics, follow users, and start learning how to make apps like the pros.