3D-touch API - Peek and Pop

3D-touch目前有两种主要的使用方式

Peek and Pop

预览弹出功能

先判断设备是否支持3D-touch

Checking for 3D Touch Availability

To check at runtime whether a device supports 3D Touch, read the value of the forceTouchCapability property on the trait collection for any object that has a trait environment (seeUITraitEnvironment Protocol Reference). A user can turn off 3D Touch while your app is running, so read this property as part of your implementation of the traitCollectionDidChange: delegate method.

To ensure that all your users can access your app’s features, branch your code depending on whether 3D Touch is available. When it is available, take advantage of 3D Touch capabilities. When it is not available, provide alternatives such as by employing touch and hold, implemented with the UILongPressGestureRecognizer class.

Refer to iOS Human Interface Guidelines for ideas on how to enhance your app’s interactions for users with 3D Touch-capable devices while not leaving your other users behind.

//判断是否支持3D-Touch
if (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable) {
    
    //支持就注册代理
    [self registerForPreviewingWithDelegate:(id)self sourceView:self.tableView];
    
} else {
    
    //不支持
    NSLog(@"3D Touch is not available on this device.");
    
}

注册代理和sourceView

当判断设备支持3D-touch后,我们要进行注册代理和sourceView.

代理方法是用来实现预览和弹出的主要方法.

sourceView可以理解为这个view可以支持3D-touch,而且我们后面的计算非模糊区域的时候,坐标是根据sourceView来的.

//支持就注册代理

[self registerForPreviewingWithDelegate:(id)self sourceView:self.tableView]

遵守UIViewControllerPreviewingDelegate,并实现代理方法

UIViewControllerPreviewingDelegate简介

Implement the methods of this protocol to respond, with a preview view controller and a commit view controller, to the user pressing a view object on the screen of a device that supports 3D Touch.

主要方法
第一个代理方法:
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location;

Called when the user has pressed a source view in a previewing view controller, thereby obtaining a surrounding blur to indicate that a preview (peek) is available.

当用户重压一个支持3D-touch的区域的时候(Peek),会调用这个方法,除了sourceRect其他区域会变模糊,通过这种方式来提醒你预览的区域.

参数:

  • previewingContext 预览上下文
    • 可以用来设置sourceRect
  • location 重压点
    • 你进行3D-touch按压的坐标
    • 这个坐标是相对于sourceView的

返回值:

  • 返回需要预览的控制器
第二个代理方法:
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit

Called to let you prepare the presentation of a commit (pop) view from your commit view controller.

当你预览后继续按压后调用此方法(Pop),调用此方法后一般将预览控制器显示出来.

参数:

  • previewingContext 预览上下文
  • viewControllerToCommit 控制器,就是在上一个代理方法中返回的控制器

code

主控制器的代码实现

  • 创建了tableView
  • 实现tableView的Peek和Pop
#import "ViewController.h"
#import "DYPreviewingViewController.h"

@interface ViewController () <UITableViewDelegate,UITableViewDataSource,UIViewControllerPreviewingDelegate>
    
@property (nonatomic, strong) UITableView *tableView;

@property (nonatomic, strong) UIView *soureView;
    
@end

@implementation ViewController

- (void)viewDidLayoutSubviews {
    [super viewDidLayoutSubviews];
    
    CGFloat tableY = CGRectGetMaxY(self.navigationController.navigationBar.frame);
    
    self.tableView.frame = CGRectMake(0,
                                      tableY,
                                      [UIScreen mainScreen].bounds.size.width,
                                      [UIScreen mainScreen].bounds.size.height - tableY);
    
}
    
- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.automaticallyAdjustsScrollViewInsets = NO;
    
    [self addTableView];
    
    [self addPreview];
    
}
    
- (void)addTableView {
    
    self.tableView = [[UITableView alloc] initWithFrame:CGRectZero style:UITableViewStyleGrouped];
    
    self.tableView.delegate = self;
    
    self.tableView.dataSource = self;
    
    self.tableView.rowHeight = 80;
    
    [self.view addSubview:self.tableView];
    
}
    
- (void)addPreview {
    
    //判断是否支持3D-Touch
    if (self.traitCollection.forceTouchCapability == UIForceTouchCapabilityAvailable) {
        
        //支持就注册代理
        [self registerForPreviewingWithDelegate:(id)self sourceView:self.tableView];
        
    } else {
        
        //不支持
        NSLog(@"3D Touch is not available on this device.");
        
    }
    
}
    
#pragma mark - tableViewDataSource

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    
    return 2;
    
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    
    return 5;
    
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"shortcut"];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"shortcut"];
    }
    
    cell.textLabel.text = [NSString stringWithFormat:@"第%zd组,第%zd行",indexPath.section,indexPath.row];
    
    cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
    
    return cell;
}

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    
    NSLog(@"选中了%zd组,%zd行",indexPath.section,indexPath.row);

}
    
#pragma mark - UIViewControllerPreviewingDelegate
    
- (UIViewController *)previewingContext:(id<UIViewControllerPreviewing>)previewingContext viewControllerForLocation:(CGPoint)location {
    
    NSLog(@"%s", __FUNCTION__);
    
    //控制变模糊的区域
    
    //location = [self.view convertPoint:location toView:self.tableView];
    
    NSLog(@"%@\n%@",previewingContext,NSStringFromCGPoint(location));
    
    NSIndexPath *indexPath = [self.tableView indexPathForRowAtPoint:location];
    
    if (indexPath) {
        
        NSLog(@"%zd",indexPath.row);
        
        CGRect selectedFrame = [self.tableView cellForRowAtIndexPath:indexPath].frame;
        
        //selectedFrame = [self.tableView convertRect:selectedFrame toView:self.view];
        
        //sourceRect是控制选中的区域(不变模糊的区域)
        previewingContext.sourceRect = selectedFrame;
        
    }
    else {
    
        return nil;
        
    }
    
    DYPreviewingViewController *preview = [[DYPreviewingViewController alloc] init];
    
    return preview;
    
}
    
- (void)previewingContext:(id<UIViewControllerPreviewing>)previewingContext commitViewController:(UIViewController *)viewControllerToCommit {
    
    [self showViewController:viewControllerToCommit sender:self];
    
    NSLog(@"viewControllerToCommit = %@  previewingContext = %@", viewControllerToCommit, previewingContext);
    
}

@end

预览详情控制器的代码实现

  • 返回Actions,这样预览的时候,上滑就会出现相应的选项,点击去执行相应的代码.
#import "DYPreviewingViewController.h"

@interface DYPreviewingViewController ()

@property (nonatomic, strong) NSMutableArray *items;

@end

@implementation DYPreviewingViewController

- (void)viewDidLoad {
    [super viewDidLoad];
    
    self.automaticallyAdjustsScrollViewInsets = NO;
    
    self.view.backgroundColor = [UIColor redColor];
    
    self.navigationItem.title = @"previewing";
    
}

#pragma mark - 返回预览选项数组
- (NSArray<id<UIPreviewActionItem>> *)previewActionItems {

    UIPreviewAction *action1 = [UIPreviewAction actionWithTitle:@"Action 1"
                                                          style:UIPreviewActionStyleDefault
                                                        handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {

        NSLog(@"Action 1 triggered");
        
    }];
    
    UIPreviewAction *action2 = [UIPreviewAction actionWithTitle:@"Action 2"
                                                          style:UIPreviewActionStyleSelected
                                                        handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"Action 2 triggered");
        
    }];
    
    UIPreviewAction *action3 = [UIPreviewAction actionWithTitle:@"Action 3"
                                                          style:UIPreviewActionStyleDestructive
                                                        handler:^(UIPreviewAction * _Nonnull action, UIViewController * _Nonnull previewViewController) {
        
        NSLog(@"Action 3 triggered");
        
    }];
    
    NSMutableArray *actions = [NSMutableArray arrayWithObjects: action1,action2,action3,nil];
    
    return [actions copy];
    
}
    
@end

效果图

peekAndPop
peekAndActions
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,013评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,205评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,370评论 0 342
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,168评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,153评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,954评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,271评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,916评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,382评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,877评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,989评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,624评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,209评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,199评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,418评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,401评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,700评论 2 345

推荐阅读更多精彩内容

  • **2014真题Directions:Read the following text. Choose the be...
    又是夜半惊坐起阅读 9,389评论 0 23
  • 时间很快,杜兜小朋友一岁三个多月了。 在一岁一月左右学会走路以后,杜兜也越来越调皮了。每天早上7点左右醒来就在床上...
    杜痕远阅读 391评论 0 2
  • 初中时,有个命题叫《20年后的我》 你肯定也写过类似的作文,稚嫩的笔尖,涂抹着未来的光景,写着满满的期待,相信自己...
    DrACNE痘院长阅读 572评论 0 2
  • 最近在“豆瓣”上看过一本书《当时若已知》,是对哈佛1963年毕业生的采访,对人生、职业、财富、成功、家庭、幸福等等...
    冀泰来阅读 485评论 4 2
  • 昨天是双11,在大家都在熬夜买买买的时候,我却在规划的间隔年,希望通过一场大扫除给自己一个新开始就像我在one里面...
    木小溪V阅读 3,344评论 52 77