3D Touch----shortcutItems

2021-05-25  本文已影响0人  笑看人生_44e2
WechatIMG782.png

didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
[self creatShortcutItem];
if(launchOptions){
if([[[UIDevice currentDevice] systemVersion] doubleValue]>=9.0){
UIApplicationShortcutItem *shortcutItem = [launchOptions valueForKey:UIApplicationLaunchOptionsShortcutItemKey];
if (shortcutItem) {
//判断先前我们设置的快捷选项标签唯一标识,根据不同标识执行不同操作
[self dealWithShortcut:shortcutItem.type];
return NO;
}
}
}
// 广告
if ([[[NSUserDefaults standardUserDefaults] objectForKey:@"adsstatus"] intValue] ==1) {
[self creadeADView];
}
return YES;
}

pragma mark - 3D Touch 创建 shortcutItem

pragma mark - 当app已启动, 点击shortcutItem回调

}
-(void)creadeADView{
}

上一篇下一篇

猜你喜欢

热点阅读