最新回答 / xue_化了
測(cè)試環(huán)境使用dev證書(shū),正式環(huán)境使用hoc證書(shū)或發(fā)布證書(shū)。發(fā)布證書(shū)是正式環(huán)境上線用的,hoc證書(shū)是正式環(huán)境測(cè)試(非上線時(shí))用的。
2018-06-14
在視頻里,怎么快速寫(xiě)一個(gè)property,還有怎么只修改一個(gè)變量名,而其他變量名自動(dòng)修改
2018-05-14
取消notif(2)
UIApplication *app = [UIApplication sharedApplication];
app.applicationIconBadgeNumber = 0;
[app cancelAllLocalNotifications];
UIApplication *app = [UIApplication sharedApplication];
app.applicationIconBadgeNumber = 0;
[app cancelAllLocalNotifications];
2017-12-04
取消notif
NSArray<UILocalNotification *> *localNotifications = [UIApplication sharedApplication].scheduledLocalNotifications;
UILocalNotification * notif = localNotifications[0];//這里選擇notif對(duì)象
[[UIApplication sharedApplication]]cancelLocatNotification:notif];
NSArray<UILocalNotification *> *localNotifications = [UIApplication sharedApplication].scheduledLocalNotifications;
UILocalNotification * notif = localNotifications[0];//這里選擇notif對(duì)象
[[UIApplication sharedApplication]]cancelLocatNotification:notif];
2017-12-04