导航栏按钮返回

来源:互联网 发布:金属脚镣淘宝 编辑:程序博客网 时间:2024/05/16 12:24

UIButton *_isussebtn;

  _isussebtn = [UIButtonbuttonWithType:UIButtonTypeRoundedRect];

  _isussebtn.frame = CGRectMake(0, 0, 20, 20);

  [_isussebtn setImage:[UIImageimageNamed:@"Return"]forState:UIControlStateNormal];

  _isussebtn.titleLabel.font = [UIFontsystemFontOfSize:18];

  [_isussebtn addTarget:selfaction:@selector(backbtn)forControlEvents:UIControlEventTouchUpInside];

 //添加到导航条

  UIBarButtonItem *rightitem = [[UIBarButtonItemalloc]initWithCustomView:_isussebtn];

  self.navigationItem.leftBarButtonItem = rightitem;

}

@interface chatViewController ()<RCIMUserInfoDataSource,UIGestureRecognizerDelegate>


-(void)backbtn{

 //[self.navigationController dismissViewControllerAnimated:YES completion:nil];

 [self.navigationControllerpopViewControllerAnimated:YES];

}


原创粉丝点击