iT邦幫忙

DAY 2
1

iOS App 開發實錄系列 第 4

如何更換 NavigationBar 的返回鍵

ios
  • 分享至 

  • xImage
  •  

NavigationBar 可用以下方法替換 Back 返回鍵( 位於導覽列的左邊 ) :

//*.m

-(void)viewDidLoad{

MyViewController *myViewController = [[MyViewController alloc] init];

//製作 MyViewController 導覽列的左按鈕 :: 並設定按鈕動作為回主畫面

UIBarButtonItem *leftBarButton = [[UIBarButtonItem alloc]

initWithImage:[UIImage imageNamed:@"item-back.png"]

style:UIBarButtonItemStyleBordered

target:self

action:@selector(goRootHome)];

//設定目標 View 的 NavigationBar 左按鈕

myViewController.navigationItem.leftBarButtonItem = leftBarButton;

[leftBarButton release];

[super viewDidLoad];

}

-(void)goRootHome{

//回到當前導覽順序的最根本 View

[self.navigationController popToRootViewControllerAnimated:YES];

}


上一篇
addSubview 的迷思 - 客製化 Cell 的 contentView
系列文
iOS App 開發實錄4
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

1 則留言

我要留言

立即登入留言