iOS 3D Touch(二) peek and pop

作為3D Touch的一部分,peek and pop (預(yù)覽和彈出)個(gè)人覺(jué)得還是很有意思的,今天就說(shuō)說(shuō)如何去實(shí)現(xiàn)這一小功能恋昼。

一、遵守協(xié)議

@interface ViewController ()<UIViewControllerPreviewingDelegate>

@end

二赶促、注冊(cè)代理液肌,并傳入響應(yīng)3D Touch的視圖,并實(shí)現(xiàn)三個(gè)通知中心(分別為刪除鸥滨、置頂嗦哆、未讀功能)。

注意:注冊(cè)代理應(yīng)該放在viewDidLoad里面婿滓,而看了很多文章都把registerForPreviewingWithDelegate方法放在tableViewcellForRowAtIndexPath代理方法中老速,這樣寫(xiě)非常不好,因?yàn)樽?cè)只需要執(zhí)行一次凸主。

- (void)viewDidLoad {
    [super viewDidLoad];
    
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deleteActionClick:) name:MessageDeleteNoti object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(stickActionClick:) name:MessageStickNoti object:nil];
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(noReadActionClick:) name:MessageNoReadNoti object:nil];
    
    if (@available(iOS 9.0, *)) {
        
        if ([self check3DTouchAvailable]) { // 判斷3d touch是否可用
            
            [self registerForPreviewingWithDelegate:(id)self sourceView:self.tableView];
        }
    }
}

- (BOOL)check3DTouchAvailable {
    
    if (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable) {
        
        return YES;
    }
    return NO;
}

- (void)dealloc{
    
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MessageDeleteNoti object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MessageStickNoti object:nil];
    [[NSNotificationCenter defaultCenter] removeObserver:self name:MessageNoReadNoti object:nil];
}

三橘券、實(shí)現(xiàn)UIViewControllerPreviewingDelegate協(xié)議

可以看看官方API,只有需實(shí)現(xiàn)以下兩個(gè)方法

NS_CLASS_AVAILABLE_IOS(9_0) @protocol UIViewControllerPreviewingDelegate <NSObject>

// If you return nil, a preview presentation will not be performed
- (nullable UIViewController *)previewingContext:(id <UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location NS_AVAILABLE_IOS(9_0);
- (void)previewingContext:(id <UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit NS_AVAILABLE_IOS(9_0);

@end
3.1 當(dāng)系統(tǒng)察覺(jué)到足夠的壓力時(shí),會(huì)調(diào)用previewingContext:commitViewController:代理方法:
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit {
    
    // 將配置好的控制器推入導(dǎo)航棧
    [self.navigationController pushViewController:viewControllerToCommit animated:YES];
}
3.2 當(dāng)用戶重壓區(qū)域的出現(xiàn)預(yù)覽界面旁舰,其他區(qū)域則會(huì)變模糊,在此方法中我們可以把需要的數(shù)據(jù)傳入到下一個(gè)界面锋华。
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location {
    
    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
    if (!indexPath) {
        return nil;
    }
    //防止重復(fù)加入
    if ([self.presentedViewController isKindOfClass:[nextViewController class]]){
        return nil;
    }
    else {
        
        NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
        listCell *cell = (listCell *)[self.tableView cellForRowAtIndexPath:indexPath];
        CGRect rect = cell.frame;
        previewingContext.sourceRect = rect;
        NIMRecentSession *recentSession = self.conversationArr[indexPath.row];
        if (recentSession.unreadCount > 0) {
            
            [recentSession setValue:@"0" forKey:@"unreadCount"];
        }
        
        [self sort];
        [self testDataIsNull];
        nextViewController *vc = [[nextViewController alloc] initWithSession:recentSession.session];
        vc.indexPath = indexPath;
        vc.isTop = [recentSession isTop];
        vc.isOfficeNotiAccount = recentSession.isOfficeNotiAccount;
        return vc;
    }
}

四、實(shí)現(xiàn)通知方法

- (void)deleteActionClick:(NSNotification *)noti {
    
    NSIndexPath *indexPath = noti.userInfo[@"index"];
    NIMRecentSession *recentSession = self.conversationArr[indexPath.row];
    [self onDeleteRecentAtIndexPath:recentSession atIndexPath:indexPath];
}

- (void)stickActionClick:(NSNotification *)noti {
    
    NSIndexPath *indexPath = noti.userInfo[@"index"];
    NSInteger isTop = [noti.userInfo[@"isTop"] integerValue];
    NIMRecentSession *recentSession = self.conversationArr[indexPath.row];

    if (isTop) { // 點(diǎn)擊了取消置頂
        
        [recentSession setTopFlag:0];
        [self sort];
        [self testDataIsNull];
    }else { // 點(diǎn)擊了置頂
        
        [recentSession setTopFlag:1];
        [self sort];
        [self testDataIsNull];
    }
}

- (void)noReadActionClick:(NSNotification *)noti {
    
    NSIndexPath *indexPath = noti.userInfo[@"index"];
    NIMRecentSession *recentSession = self.conversationArr[indexPath.row];
    
    [recentSession setValue:@"1" forKey:@"unreadCount"];
    [self testDataIsNull];
}

五鬓梅、添加Peek狀態(tài)下供置,上劃時(shí)的快速操作谨湘,即在nextViewController重寫(xiě)方法绽快,通過(guò)發(fā)送通知告訴上一個(gè)界面需要執(zhí)行的操作。

#pragma mark - UIPreviewActionItem
- (NSArray<id<UIPreviewActionItem>> *)previewActionItems {
    
    UIPreviewAction *noReadAction = [UIPreviewAction actionWithTitle:@"標(biāo)為未讀" style:UIPreviewActionStyleDefault handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"標(biāo)為未讀");
        [[NSNotificationCenter defaultCenter] postNotificationName:MessageNoReadNoti object:nil userInfo:@{@"index":self.indexPath}];
    }];
    
    UIPreviewAction *stickAction = [UIPreviewAction actionWithTitle:@"置頂" style:UIPreviewActionStyleDefault handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"置頂");
        [[NSNotificationCenter defaultCenter] postNotificationName:MessageStickNoti object:nil userInfo:@{@"index":self.indexPath,@"isTop":@(self.isTop)}];
    }];
    
    UIPreviewAction *cancelStickAction = [UIPreviewAction actionWithTitle:@"取消置頂" style:UIPreviewActionStyleDefault handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"取消置頂");
        [[NSNotificationCenter defaultCenter] postNotificationName:MessageStickNoti object:nil userInfo:@{@"index":self.indexPath,@"isTop":@(self.isTop)}];
    }];
    
    UIPreviewAction *deleteAction = [UIPreviewAction actionWithTitle:@"刪除" style:UIPreviewActionStyleDestructive handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"刪除");
        [[NSNotificationCenter defaultCenter] postNotificationName:MessageDeleteNoti object:nil userInfo:@{@"index":self.indexPath}];
    }];
    
    if (self.isOfficeNotiAccount) {
        return @[noReadAction, deleteAction];
    }
    
    return self.isTop ? @[noReadAction, cancelStickAction, deleteAction] : @[noReadAction, stickAction, deleteAction];
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請(qǐng)聯(lián)系作者
  • 序言:七十年代末紧阔,一起剝皮案震驚了整個(gè)濱河市坊罢,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌擅耽,老刑警劉巖活孩,帶你破解...
    沈念sama閱讀 212,454評(píng)論 6 493
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場(chǎng)離奇詭異乖仇,居然都是意外死亡憾儒,警方通過(guò)查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,553評(píng)論 3 385
  • 文/潘曉璐 我一進(jìn)店門(mén)乃沙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來(lái)起趾,“玉大人,你說(shuō)我怎么就攤上這事警儒⊙雕桑” “怎么了?”我有些...
    開(kāi)封第一講書(shū)人閱讀 157,921評(píng)論 0 348
  • 文/不壞的土叔 我叫張陵蜀铲,是天一觀的道長(zhǎng)边琉。 經(jīng)常有香客問(wèn)我,道長(zhǎng)记劝,這世上最難降的妖魔是什么变姨? 我笑而不...
    開(kāi)封第一講書(shū)人閱讀 56,648評(píng)論 1 284
  • 正文 為了忘掉前任,我火速辦了婚禮厌丑,結(jié)果婚禮上定欧,老公的妹妹穿的比我還像新娘。我一直安慰自己蹄衷,他們只是感情好忧额,可當(dāng)我...
    茶點(diǎn)故事閱讀 65,770評(píng)論 6 386
  • 文/花漫 我一把揭開(kāi)白布。 她就那樣靜靜地躺著愧口,像睡著了一般睦番。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上,一...
    開(kāi)封第一講書(shū)人閱讀 49,950評(píng)論 1 291
  • 那天托嚣,我揣著相機(jī)與錄音巩检,去河邊找鬼。 笑死示启,一個(gè)胖子當(dāng)著我的面吹牛兢哭,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播夫嗓,決...
    沈念sama閱讀 39,090評(píng)論 3 410
  • 文/蒼蘭香墨 我猛地睜開(kāi)眼迟螺,長(zhǎng)吁一口氣:“原來(lái)是場(chǎng)噩夢(mèng)啊……” “哼!你這毒婦竟也來(lái)了舍咖?” 一聲冷哼從身側(cè)響起矩父,我...
    開(kāi)封第一講書(shū)人閱讀 37,817評(píng)論 0 268
  • 序言:老撾萬(wàn)榮一對(duì)情侶失蹤,失蹤者是張志新(化名)和其女友劉穎排霉,沒(méi)想到半個(gè)月后窍株,有當(dāng)?shù)厝嗽跇?shù)林里發(fā)現(xiàn)了一具尸體,經(jīng)...
    沈念sama閱讀 44,275評(píng)論 1 303
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡攻柠,尸身上長(zhǎng)有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,592評(píng)論 2 327
  • 正文 我和宋清朗相戀三年球订,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片瑰钮。...
    茶點(diǎn)故事閱讀 38,724評(píng)論 1 341
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡冒滩,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出飞涂,到底是詐尸還是另有隱情旦部,我是刑警寧澤,帶...
    沈念sama閱讀 34,409評(píng)論 4 333
  • 正文 年R本政府宣布较店,位于F島的核電站士八,受9級(jí)特大地震影響,放射性物質(zhì)發(fā)生泄漏梁呈。R本人自食惡果不足惜婚度,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 40,052評(píng)論 3 316
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望官卡。 院中可真熱鬧蝗茁,春花似錦、人聲如沸寻咒。這莊子的主人今日做“春日...
    開(kāi)封第一講書(shū)人閱讀 30,815評(píng)論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽(yáng)。三九已至,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間旁趟,已是汗流浹背艰匙。 一陣腳步聲響...
    開(kāi)封第一講書(shū)人閱讀 32,043評(píng)論 1 266
  • 我被黑心中介騙來(lái)泰國(guó)打工限煞, 沒(méi)想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人员凝。 一個(gè)月前我還...
    沈念sama閱讀 46,503評(píng)論 2 361
  • 正文 我出身青樓署驻,卻偏偏與公主長(zhǎng)得像,于是被迫代替她去往敵國(guó)和親健霹。 傳聞我的和親對(duì)象是個(gè)殘疾皇子旺上,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 43,627評(píng)論 2 350

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