這個方法用在返回按鈕是自定義的時候
UIView *emptyView = [[UIView alloc] init];;
UIBarButtonItem *emptyButton = [[UIBarButtonItem alloc] initWithCustomView:emptyView];
[self.navigationItem setLeftBarButtonItem:emptyButton animated:YES];
```
## 這個方法只有在返回按鈕是系統(tǒng)的時候才有效果
[self.navigationItem setHidesBackButton:YES animated:YES];