取消ios7下自带的手势滑动导航

在ios7中苹果加入了手势滑动导航,但以前做的项目和这块有一点冲突,所以想去掉苹果自带的手势滑动导航。

取消很简单,只需要自己重写左导航键就可以取消掉系统自带的手势滑动导航。

//设置左边的返回

- (void)setLeftNavigationBar

{

    UIButton *backButton = [UIButton buttonWithType:UIButtonTypeCustom];

    backButton.frame = CGRectMake(0, 0, 170, 26);

    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(40, 0, 130, 26)];

    [label setFont:[UIFont boldSystemFontOfSize:20]];

    [label setTextColor:[UIColor whiteColor]];

    [label setText:@"返回"];

    [label setBackgroundColor:[UIColor clearColor]];

    [backButton addSubview:label];

    [backButton addTarget:self action:@selector(popChatViewController) forControlEvents:UIControlEventTouchUpInside];

    UIBarButtonItem *leftBarButtons = [[UIBarButtonItem alloc] initWithCustomView:backButton];

    self.navigationItem.leftBarButtonItem = leftBarButtons;

}


//返回到上一个界面

- (void)popChatViewController

{

    [self.navigationController popViewControllerAnimated:YES];

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值