http://my.oschina.net/u/2340880/blog/511509
iOS 9 才支持,相關內容使用時必須判斷系統版本。
包括三大模塊:
? ? ? ? (1)Home Screen Quick Actions (菜單)
? ? ? ? (2)peek and pop
? ? ? ? (3)Force properties(力度)
1.靜態標簽 plist?
? ? ? ? ?UIApplicationShortCutItems <Array>
2.動態標簽
? ? ? ? ?UIApplicationShortCutItemType
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??Title
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? SubTitle
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? Icon
? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? UseInfo
3.UIApplicationDelegate
? ? ? ?通過UIApplicationLaunchOptionsShortCutItemKey獲得UIApplicationShortCutItem
4.didFinishLaunchingWithOptions:
performActionForShorCutItem:會通過以上兩個方法響應。
如果程序處于關閉狀態,則在didFinishLaunchingWithOptions:通過3獲得action,需返回NO。
如果程序處于后臺狀態,則在performActionForShorCutItem:激活。
5. peeking(按壓) and poping(全屏)
if (UITraitController.forceTouchCapability == .available) {
? ? ?[self.registerForPreviewingWithDelegate:self sourceView:sourceView];
}