SBBulletinBannerController

From iPhone Development Wiki
Revision as of 21:43, 23 April 2015 by Ryanb93 (talk | contribs)

SBBulletinBannerController can be used to post notifications to the user from a substrate tweak running inside Springboard.

BBBulletinRequest *bulletin = [[BBBulletinRequest alloc] init];  
bulletin.sectionID =  @"com.application.identifier";  
bulletin.title =  @"Title";  
bulletin.message  = @"Message";  
bulletin.date = [NSDate date];  
SBBulletinBannerController *controller = [%c(SBBulletinBannerController) sharedInstance]; 
[controller observer:nil addBulletin:bulletin forFeed:2];