在iOS中,導航控制器默認就自帶了側滑功能,當用戶在界面的左邊(左邊邊緣)滑動的時候,纔會有側滑功能。可是咱們每每在開發的過程當中須要在屏幕的任意位置滑動,都須要返回到上一個界面。html
多說無心,直接看代碼:ios
效果圖部分:代理
代碼部分(第二個界面):htm
#import "CJSecondViewController.h"對象
@interface CJSecondViewController ()<UIGestureRecognizerDelegate>blog
@end圖片
@implementation CJSecondViewController開發
- (void)viewDidLoad {get
[super viewDidLoad];it
NSLog(@"%@",self.navigationController.interactivePopGestureRecognizer);
// 獲取系統自帶滑動手勢的target對象
id target = self.navigationController.interactivePopGestureRecognizer.delegate;
// 建立全屏滑動手勢,調用系統自帶滑動手勢的target的action方法
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:target action:@selector(handleNavigationTransition:)];
// 設置手勢代理,攔截手勢觸發
pan.delegate = self;
// 給導航控制器的view添加全屏滑動手勢
[self.view addGestureRecognizer:pan];
// 禁止使用系統自帶的滑動手勢
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor whiteColor];
self.title = @"圖片展現";
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(50, 200, 200, 200)];
imageView.image = [UIImage imageNamed:@"4.jpg"];
[self.view addSubview:imageView];
}
// 何時調用:每次觸發手勢以前都會詢問下代理,是否觸發。
// 做用:攔截手勢觸發
- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer{
// 注意:只有非根控制器纔有滑動返回功能,根控制器沒有。
// 判斷導航控制器是否只有一個子控制器,若是隻有一個子控制器,確定是根控制器
if (self.childViewControllers.count == 1) {
// 表示用戶在根控制器界面,就不須要觸發滑動手勢,
return NO;
}
return YES;
}
@end
具體緣由和詳情信息請繼續查看:http://www.cocoachina.com/ios/20150811/12897.html