UIBarButtonItem *backBtnItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"返回"] style:UIBarButtonItemStylePlain target:self action:@selector(popClick)];
self.navigationItem.leftBarButtonItem = backBtnItem;
#pragma mark - POP当前页面
- (void)popClick
{
[self.navigationController popViewControllerAnimated:YES];
}
网友评论