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

自定义导航栏按钮 baseViewController中写!

时间:2014-11-26 13:37:31      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:io   ar   os   sp   for   strong   on   cti   bs   

// 自定义导航栏"返回按钮"

- (void)initNaviBackBtn

{

    UIButton *backBtn = [UIButtonbuttonWithType:UIButtonTypeCustom];

    backBtn.frame = CGRectMake(0, 0, 50, 22);

    [backBtn setImage:[UIImageimageNamed:@"backBtn"] forState:UIControlStateNormal];

    [backBtn addTarget:selfaction:@selector(back) forControlEvents:UIControlEventTouchUpInside];

    UIBarButtonItem *backItem = [[UIBarButtonItemalloc] initWithCustomView:backBtn];

    

    // 控制按钮的左右间距

    UIBarButtonItem *negativeSpacer = [[UIBarButtonItemalloc]

                                       initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace

                                       target:nilaction:nil];

    if (IOS_VERSION_6) {

        negativeSpacer.width = 2;

    } else {

        negativeSpacer.width = -9;

    }

    self.navigationItem.leftBarButtonItems = [NSArrayarrayWithObjects:negativeSpacer, backItem, nil];

    

    //    self.navigationItem.leftBarButtonItem = backItem;

}

自定义导航栏按钮 baseViewController中写!

标签:io   ar   os   sp   for   strong   on   cti   bs   

原文地址:http://www.cnblogs.com/liman1990/p/4122683.html

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