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

UIToolbar自定义背景及按钮设置

时间:2014-05-07 16:57:41      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   tar   

如果toolbar直接设置frame为CGRectMake(0, 0, 320, 66)的话,左右两边的按钮会往上跑(按钮水平居中的高度是66),所以可以写下面的代码覆盖状态栏的颜色(不用考虑toolbar左右两边的按钮位置除外)

//覆盖状态栏的颜色
    UIView *statusView = [[UIView alloc]initWithFrame:CGRectMake(0, 0, 320, 22)];
//创建toolbar  
    MyToolbar *toolbar = [[MyToolbar alloc]initWithFrame:CGRectMake(0, 22, 320, 44)];
bubuko.com,布布扣
//创建toolbar右边的按钮
UIBarButtonItem *rightItem = [[UIBarButtonItem alloc]initWithImage:[UIImage imageNamed:@"set"] style:UIBarButtonItemStylePlain target:self action:nil];
//设置按钮颜色
rightItem.tintColor
= [UIColor whiteColor];
//创建弹性空白 UIBarButtonItem
*flexibleSpace = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
bubuko.com,布布扣

 

UIToolbar自定义背景及按钮设置,布布扣,bubuko.com

UIToolbar自定义背景及按钮设置

标签:style   blog   class   code   java   tar   

原文地址:http://www.cnblogs.com/hw140430/p/3713431.html

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