3DTouch - iOS新特性

6s和6s plus之后特有效果需纳,對(duì)著應(yīng)用圖標(biāo)用力按會(huì)觸發(fā)3DTouch .


第一步 : 3DTouch 設(shè)備支持檢測(cè):

檢測(cè)當(dāng)前的設(shè)備是否支持3DTouch

//  在iOS9中有一個(gè)新的枚舉
 typedef NS_ENUM(NSInteger, UIForceTouchCapability) {  
            UIForceTouchCapabilityUnknown        = 0,  // 未知的支持屬性
            UIForceTouchCapabilityUnavailable    = 1,  // 不支持
            UIForceTouchCapabilityAvailable      = 2 // 支持
  };

一般我們都在每個(gè)ViewController的生命周期中這樣做:

定義一個(gè)是否設(shè)備支持的BOOL值屬性

 @property (nonatomic , assign) BOOL support3DTouch; 

在生命周期函數(shù)中檢測(cè)支持與否

  - (void)viewWillAppear:(BOOL)animated {  
     [super viewWillAppear:animated];  
      //檢測(cè)當(dāng)前是否支持3DTouch  
      self.support3DTouch = [self support3DTouch];  
  }

在生命周期外檢測(cè)支持與否(因?yàn)橛锌赡艹隽松芷诤瘮?shù)而發(fā)生了變化)

  - (void)traitCollectionDidChange:(nullable UITraitCollection *)previousTraitCollection NS_AVAILABLE_IOS(8_0) {     
      self.support3DTouch = [self support3DTouch];  
  } 

檢測(cè)是否支持3DTouch的方法

  - (BOOL)support3DTouch  
  {  
      // 如果開啟了3D touch  
      if (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable)  
      {  
          return YES;  
      }  
          return NO;  
      }  
  }  

第二步 : 配置快捷視圖列表

創(chuàng)建快捷視圖列表有兩種方法:
1,一種是編輯info.plist文件中的UIApplicationShortcutItems,
通過可視化的界面添加鍵值對(duì)直接配置info.plist

2盲赊,另一種是使用代碼在工程中加入items
在工程的 AppDelegate.m

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.rootViewController = [[UINavigationController alloc] initWithRootViewController:[[HomeViewController alloc] init]];
    [self.window makeKeyAndVisible];
    
    //  代碼創(chuàng)建快捷視圖列表的方法芥永,
     [self create3DTouchShotItems];

    return YES;
}

- (void)create3DTouchShotItems {
    //創(chuàng)建快捷item的icon UIApplicationShortcutItemIconFile
    UIApplicationShortcutIcon *icon1 = [UIApplicationShortcutIcon iconWithTemplateImageName:@"icon1"];
    UIApplicationShortcutIcon *icon2 = [UIApplicationShortcutIcon iconWithTemplateImageName:@"icon2"];
    UIApplicationShortcutIcon *icon3 = [UIApplicationShortcutIcon iconWithTemplateImageName:@"icon3"];
    
    //創(chuàng)建快捷item的userinfo UIApplicationShortcutItemUserInfo
    NSDictionary *info1 = @{@"url":@"url1"};
    NSDictionary *info2 = @{@"url":@"url2"};
    NSDictionary *info3 = @{@"url":@"url3"};
    
    //創(chuàng)建ShortcutItem
    UIMutableApplicationShortcutItem *item1 = [[UIMutableApplicationShortcutItem alloc]initWithType:@"XS_3DTocuh_1" localizedTitle:@"掃一掃" localizedSubtitle:@"" icon:icon1 userInfo:info1];
    UIMutableApplicationShortcutItem *item2 = [[UIMutableApplicationShortcutItem alloc]initWithType:@"XS_3DTocuh_2" localizedTitle:@"smile" localizedSubtitle:@"微笑面對(duì)生活" icon:icon2 userInfo:info2];
    UIMutableApplicationShortcutItem *item3 = [[UIMutableApplicationShortcutItem alloc]initWithType:@"XS_3DTocuh_3" localizedTitle:@"購物" localizedSubtitle:@"Shopping" icon:icon3 userInfo:info3];
    
    NSArray *items = @[item1, item2, item3];
    [UIApplication sharedApplication].shortcutItems = items;
}

第三步 : 給列表視圖中的cell注冊(cè) 3DTouch 事件

1,首先,在首頁當(dāng)前控制器里遵守UIViewControllerPreviewingDelegate協(xié)議
UIViewControllerPreviewingDelegate
2蓬痒,在注冊(cè)前先判斷是否設(shè)備支持(也就是第一步)

3,注冊(cè): [self registerForPreviewingWithDelegate:self sourceView:cell];

  - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    ZLTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"ZLTableViewCell"];
    if (cell == nil) {
        cell = [ZLTableViewCell cellWithTableView:tableView];
    }
    cell.dataFrame = self.dataSource[indexPath.row];
    //給cell注冊(cè)代理漆羔,使其支持3DTouch手勢(shì)
    if (self.support3DTouch) {
        [self registerForPreviewingWithDelegate:self sourceView:cell];
    }
    
    return cell;
}

第四步: 完成UIViewControllerPreviewingDelegate 協(xié)議回調(diào)梧奢,實(shí)現(xiàn)Peek Pop

在首頁當(dāng)前控制器里,

#pragma mark - 3DTouch  UIViewControllerPreviewingDelegate

Peek 實(shí)現(xiàn)代碼:

// 此方法是輕按控件時(shí)狱掂,跳出peek的代理方法
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location {
    
    //防止重復(fù)加入
    if ([self.presentedViewController isKindOfClass:[ZLPeekViewController class]])
    {
        return nil;
    }
    else
    {
        ZLTableViewCell *cell = (ZLTableViewCell *)previewingContext.sourceView;
        ZLCellData * cellData = cell.dataFrame.cellData;
        ZLPeekViewController *peekViewController = [[ZLPeekViewController alloc] init];
        peekViewController.cellData = cellData;
        peekViewController.delegate = self;
        return peekViewController;
    }
}

Pop 代碼

//此方法是重按peek時(shí),跳入pop的代理方法
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext
    commitViewController:(UIViewController *)viewControllerToCommit {
    
    ZLTableViewCell *cell = (ZLTableViewCell *)previewingContext.sourceView;
    ZLCellData * cellData = cell.dataFrame.cellData;
    ZLPopViewController *popViewController = [[ZLPopViewController alloc] init];
    popViewController.cellData = cellData;
    // 以prentViewController的形式展現(xiàn)
    [self showViewController:popViewController sender:self];
    
    // 以push的形勢(shì)展現(xiàn)
//    [self.navigationController pushViewController:popViewController animated:YES];
}

第五步 : 在Peek狀態(tài)下向上滑動(dòng)出現(xiàn)的按鈕配置方法

在 ZLPeekViewController.m 里, 實(shí)現(xiàn) - (NSArray> *)previewActionItems 回調(diào)方法

#pragma mark - Preview Actions

- (NSArray<id<UIPreviewActionItem>> *)previewActionItems {
    
    // 生成UIPreviewAction
    UIPreviewAction *action1 = [UIPreviewAction actionWithTitle:@"事件 1" style:UIPreviewActionStyleDefault handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"Action 1 selected");
        [self.delegate pushToPopViewControllerWithCellData:self.cellData];
    }];
    
    UIPreviewAction *action2 = [UIPreviewAction actionWithTitle:@"事件 2" style:UIPreviewActionStyleDestructive handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"Action 2 selected");
    }];
    
    UIPreviewAction *action3 = [UIPreviewAction actionWithTitle:@"事件 3" style:UIPreviewActionStyleSelected handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"Action 3 selected");
    }];
    
    UIPreviewAction *tap1 = [UIPreviewAction actionWithTitle:@"按鈕 1" style:UIPreviewActionStyleDefault handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"tap 1 selected");
    }];
    
    UIPreviewAction *tap2 = [UIPreviewAction actionWithTitle:@"按鈕 2" style:UIPreviewActionStyleDestructive handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"tap 2 selected");
    }];
    
    UIPreviewAction *tap3 = [UIPreviewAction actionWithTitle:@"按鈕 3" style:UIPreviewActionStyleSelected handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        NSLog(@"tap 3 selected");
    }];
    
    NSArray *actions = @[action1, action2, action3];
    NSArray *taps = @[tap1, tap2, tap3];
    UIPreviewActionGroup *group1 = [UIPreviewActionGroup actionGroupWithTitle:@"一組事件" style:UIPreviewActionStyleDefault actions:actions];
    UIPreviewActionGroup *group2 = [UIPreviewActionGroup actionGroupWithTitle:@"一組按鈕" style:UIPreviewActionStyleDefault actions:taps];
    NSArray *group = @[group1,group2];
    
    //當(dāng)然你也可以返回三個(gè)單獨(dú)的action對(duì)象的數(shù)組亲轨,而不是group趋惨,具體效果,可以自己試一下
    
    return group;
}

現(xiàn)在可以測(cè)試嘍, 看下效果吧, 如果需要demo可以去我的 GitHub 上下載~

3DTouch.gif

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末惦蚊,一起剝皮案震驚了整個(gè)濱河市器虾,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌蹦锋,老刑警劉巖兆沙,帶你破解...
    沈念sama閱讀 212,080評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異莉掂,居然都是意外死亡葛圃,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,422評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門憎妙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來库正,“玉大人,你說我怎么就攤上這事厘唾∪旆” “怎么了?”我有些...
    開封第一講書人閱讀 157,630評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵阅嘶,是天一觀的道長(zhǎng)属瓣。 經(jīng)常有香客問我,道長(zhǎng)讯柔,這世上最難降的妖魔是什么抡蛙? 我笑而不...
    開封第一講書人閱讀 56,554評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮魂迄,結(jié)果婚禮上粗截,老公的妹妹穿的比我還像新娘。我一直安慰自己捣炬,他們只是感情好熊昌,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,662評(píng)論 6 386
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著湿酸,像睡著了一般婿屹。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上推溃,一...
    開封第一講書人閱讀 49,856評(píng)論 1 290
  • 那天昂利,我揣著相機(jī)與錄音,去河邊找鬼。 笑死蜂奸,一個(gè)胖子當(dāng)著我的面吹牛犁苏,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播扩所,決...
    沈念sama閱讀 39,014評(píng)論 3 408
  • 文/蒼蘭香墨 我猛地睜開眼围详,長(zhǎng)吁一口氣:“原來是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來了祖屏?” 一聲冷哼從身側(cè)響起助赞,我...
    開封第一講書人閱讀 37,752評(píng)論 0 268
  • 序言:老撾萬榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎袁勺,沒想到半個(gè)月后嫉拐,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,212評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡魁兼,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,541評(píng)論 2 327
  • 正文 我和宋清朗相戀三年,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了漠嵌。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片咐汞。...
    茶點(diǎn)故事閱讀 38,687評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡,死狀恐怖儒鹿,靈堂內(nèi)的尸體忽然破棺而出化撕,到底是詐尸還是另有隱情,我是刑警寧澤约炎,帶...
    沈念sama閱讀 34,347評(píng)論 4 331
  • 正文 年R本政府宣布植阴,位于F島的核電站,受9級(jí)特大地震影響圾浅,放射性物質(zhì)發(fā)生泄漏掠手。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,973評(píng)論 3 315
  • 文/蒙蒙 一狸捕、第九天 我趴在偏房一處隱蔽的房頂上張望喷鸽。 院中可真熱鬧,春花似錦灸拍、人聲如沸做祝。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,777評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽混槐。三九已至,卻和暖如春轩性,著一層夾襖步出監(jiān)牢的瞬間声登,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 32,006評(píng)論 1 266
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留捌刮,地道東北人碰煌。 一個(gè)月前我還...
    沈念sama閱讀 46,406評(píng)論 2 360
  • 正文 我出身青樓,卻偏偏與公主長(zhǎng)得像绅作,于是被迫代替她去往敵國和親芦圾。 傳聞我的和親對(duì)象是個(gè)殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,576評(píng)論 2 349

推薦閱讀更多精彩內(nèi)容

  • WebSocket-Swift Starscream的使用 WebSocket 是 HTML5 一種新的協(xié)議俄认。它實(shí)...
    香橙柚子閱讀 23,798評(píng)論 8 183
  • 前言 關(guān)于這篇文章 由于iPhone 6S發(fā)布不到一年的時(shí)間个少,很多新特性、新技術(shù)還未普遍眯杏,不管是3D Touch的...
    Tangentw閱讀 4,480評(píng)論 8 18
  • 專注路程夜焦,繼續(xù)摘抄: 雪夜林畔小駐 想來我認(rèn)識(shí)這座森林, 林主的莊宅就在鄰村, 卻不會(huì)見我在此駐馬岂贩, 看他林中積雪...
    舒斗斗閱讀 90評(píng)論 0 0
  • 北風(fēng)西南度茫经,狂雨掃申城 雁飛葉紛落,風(fēng)沁骨髓寒 老有氈帽戴萎津,少且綿作衣 古只有朝絲卸伞,行刁幾人還?
    秋風(fēng)起嘻云飛揚(yáng)閱讀 331評(píng)論 0 0
  • 連自己都不知道該如何去對(duì)你 冷風(fēng)千隨 月下成影 初時(shí)便覺 言之時(shí) 寒冬秋雨 至如今 深思切 便讓春風(fēng)伴你 只言句我來遲了
    正捌閱讀 258評(píng)論 7 10