• iOS 3D touch的实现 从零开始


    [key]UIApplicationShortcutItems[/key]
        [array]
            [dict]
                [key]UIApplicationShortcutItemIconType[/key]
                [string]UIApplicationShortcutIconTypeShare[/string] //图片类型,枚举
                [key]UIApplicationShortcutItemTitle[/key]
                [string]Share[/string] //title
                [key]UIApplicationShortcutItemType[/key]
    [string]-11.UITouchText.share[/string] //标示
    [/dict]
    [/array]
     
    - (void)application:(UIApplication *)application performActionForShortcutItem:(UIApplicationShortcutItem *)shortcutItem completionHandler:(nonnull void (^)(BOOL))completionHandler{
    //发需求
        if([shortcutItem.typeisEqualToString:@"-11.UITouchText.share"]){
            [self.rnav pushViewController:[[KJIssueViewController alloc]init] animated:YES];
        }
        //我的主站
        if([shortcutItem.type isEqualToString:@"-13.UITouchText.share"]){
            [RTvc setSelectedIndex:3];
            KJServerListViewController *s=[[KJServerListViewController alloc]init];
            s.providerId=[MyDefaults readKey:kProviderId];
            [self.rnav pushViewController:s animated:YES];
        }
    }

     
  • 相关阅读:
    SQL中存储过程与自定义函数的区别
    内置函数
    正则表达式
    HTML发展史
    触发器
    事务
    视图
    索引的使用
    存储过程和自定义函数的区别
    游标用法
  • 原文地址:https://www.cnblogs.com/cfl911014/p/5234801.html
Copyright © 2020-2023  润新知