码迷,mamicode.com
首页 > 其他好文 > 详细

左边导航栏放置多个按钮

时间:2015-02-20 08:39:18      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:

UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc]initWithTitle:@"first" style:UITabBarSystemItemContactstarget:self action:@selector(one:)];

    UIBarButtonItem *anotherButton2 = [[UIBarButtonItem alloc]initWithTitle:@"second" style:UITabBarSystemItemContactstarget:self action:@selector(two:)];

    [self.navigationItem setLeftBarButtonItems:[NSArrayarrayWithObjects: anotherButton,anotherButton2,nil]];

    [anotherButton release];

    [anotherButton2 release];


左边导航栏放置多个按钮

标签:

原文地址:http://my.oschina.net/u/2262643/blog/379381

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!