美文网首页
IOS 10 3Dtouch_HomeScreenQuickA

IOS 10 3Dtouch_HomeScreenQuickA

作者: 呵呵哒1991 | 来源:发表于2017-03-23 00:38 被阅读64次

    APP 图标重压快速启动

    IMG_1559.PNG

    静态方式 设置

    在 info.plist 添加

          <key>UIApplicationShortcutItems</key>
          <dict>  // 静态 和动态 的启动项最多四个 ,静态的优先显示
                     <dict>
                           1.   <key>UIApplicationShortcutItemType</key>//字符标识ID
                              <string>任意的字符唯一标识必填</string>
                        2.     <key>UIApplictionShortcuyItemTitle</key>
                            <string>显示主标题必填</string>
                        3.      <key>UIApplicationShortcutItemSubtitle</key>
                              <string>子标题</string>
                        4.    <key>UIApplicationShortcutItemIconType</key>
                            <string>系统图标类型,自定义的话请不要填写</sting>
                       5.     <key>UIApplicationShortcutItemIconFile</key>
                            <string>自定义图标的名字</string>
                       6.     <key>UIApplicationShortcutItemUserInfo</key>
                              <dict>自定义的预制字典信息</dict>
                     </dict>
         </dict>
    

    动态方式设置

        在APP启动的时候 设置 UIApplication 的 shortCutItems(NSArray) 的即可
    

    相关文章

      网友评论

          本文标题:IOS 10 3Dtouch_HomeScreenQuickA

          本文链接:https://www.haomeiwen.com/subject/aowanttx.html