佳为好友

转:导航栏向左的带箭头的按钮

11-5-14

转:http://stackoverflow.com/questions/227078/creating-a-left-arrow-button-like-uinavigationbars-back-style-on-a-uitoolbar

【自:101号button就是向左的箭头。】
// create button
UIButton* backButton = [UIButton buttonWithType:101]; // left-pointing shape!
[backButton addTarget:self action:@selector(backAction) forControlEvents:UIControlEventTouchUpInside];
[backButton setTitle:@"Back" forState:UIControlStateNormal];

// create button item -- possible because UIButton subclasses UIView!
UIBarButtonItem* backItem = [[UIBarButtonItem alloc] initWithCustomView:backButton];

// add to toolbar, or to a navbar (you should only have one of these!)
[toolbar setItems:[NSArray arrayWithObject:backItem]];
navItem.leftBarButtonItem = backItem;

+++++

posted on 2012-12-30 11:38 佳为好友 阅读(340) 评论(0)  编辑 收藏 引用 所属分类: UI

导航

<2025年12月>
30123456
78910111213
14151617181920
21222324252627
28293031123
45678910

留言簿(1)

随笔分类

搜索

最新评论

评论排行榜