ios积累

设置导航栏手势pop

2017-07-31  本文已影响2人  凤鹃一鸣

模仿微信微信手势pop

效果图

模仿微信微信pop手势

自定义导航继承UINavigationController

- (void)viewDidLoad {

[super viewDidLoad]; 

NSArray *array = [self.interactivePopGestureRecognizer valueForKey:@"_targets"];    

id target = [[array firstObject] valueForKey:@"target"];    

SEL sel = @selector(handleNavigationTransition:);    

UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] init];   

 [self.interactivePopGestureRecognizer.view addGestureRecognizer:panGesture];   

 [panGesture addTarget:target action:sel];        

self.navigationBar.barTintColor = [UIColor redColor];    

self.navigationBar.tintColor = [UIColor whiteColor];    

self.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};    self.interactivePopGestureRecognizer.delegate = (id)self;

}

关注微信公众号“应讯”

关注微信公众号“应讯”
上一篇 下一篇

猜你喜欢

热点阅读