1汇恤、在didFinishLaunchingWithOptions:添加以下代碼
UIApplicationShortcutItem *shortItem1 = [[UIApplicationShortcutItem alloc] initWithType:@"齋打開" localizedTitle:@"齋打開"];
UIApplicationShortcutItem *shortItem2 = [[UIApplicationShortcutItem alloc] initWithType:@"彈框" localizedTitle:@"彈框"];
NSArray *shortItems = [[NSArray alloc] initWithObjects:shortItem1, shortItem2, nil];
NSLog(@"%@", shortItems);
[[UIApplication sharedApplication] setShortcutItems:shortItems];
2囚玫、添加以下代碼
- (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(void (^)(BOOL))completionHandler{
if ([shortcutItem.localizedTitle? isEqual: @"彈框"]) {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"OPPS!" message:@"我的CTO叫佛山強(qiáng)" delegate:self cancelButtonTitle:@"哦" otherButtonTitles:nil, nil];
[alert show];
return;
}