博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
ios 代码创建UIToolBar
阅读量:6430 次
发布时间:2019-06-23

本文共 1268 字,大约阅读时间需要 4 分钟。

hot3.png

分为4步骤

1、创建一个UIToolbar

2、创建一个NSMutableArray *buttons 用来存放UIBarButtonItem  

3、buttons addObject 添加  按钮

4、[self.toolBar setItems:button];

5、self.view 添加toolbar

代码如下

                      action:NULL];    //不限制大小 自适应    self.toolBar=[[UIToolbar alloc]initWithFrame:CGRectMake(0, 20, width, 0)];        //左侧取消按钮    UIBarButtonItem * leftBtn=[[UIBarButtonItem alloc]initWithTitle:@"取消" style:UIBarButtonItemStylePlain target:self action:@selector(back:)];    //右侧发布按钮    UIBarButtonItem * rightBtn=[[UIBarButtonItem alloc]initWithTitle:@"发布" style:UIBarButtonItemStylePlain target:self action:@selector(fabu:)];    NSMutableArray * buttons=[[NSMutableArray alloc]initWithCapacity:4];    [buttons addObject:leftBtn];    [buttons addObject:flexibleSpaceItem1];    [buttons addObject:rightBtn];    [self.toolBar setItems:buttons];    [self.toolBar sizeToFit];                self.toolBar.backgroundColor=color;        self.toolBar.tintColor=[UIColor whiteColor];        [self.toolBar setBackgroundImage:[UIImage new]forToolbarPosition:UIBarPositionAny barMetrics:UIBarMetricsDefault];        [self.toolBar setShadowImage:[UIImage new]                 forToolbarPosition:UIToolbarPositionAny];    [self.view addSubview:self.toolBar];

转载于:https://my.oschina.net/u/554046/blog/625071

你可能感兴趣的文章
【转】Install SmartGit via PPA in Ubuntu 13.10/13.04/12.04/Linux Mint
查看>>
PNG怎么转换成32位的BMP保持透明
查看>>
经验分享:CSS浮动(float,clear)通俗讲解
查看>>
WTL中最简单的实现窗口拖动的方法(转)
查看>>
数据结构—队列
查看>>
BZOJ4241 : 历史研究
查看>>
(LeetCode)两个队列来实现一个栈
查看>>
jquery封装常用方法
查看>>
什么是ICE (Internet Communications Engine)
查看>>
移动web开发之屏幕三要素
查看>>
求按小时统计的语句,该怎么处理
查看>>
TRUNCATE,DORP,DELETE
查看>>
Chrome的开发必备小技巧
查看>>
can-i-win(好)
查看>>
Centos6.5下安装protobuf及简单使用
查看>>
[SharePoint] SharePoint 错误集 3
查看>>
高压光耦
查看>>
[转]DPM2012系列之六:在Win7上安装DPM远程管理控制台
查看>>
postgres函数
查看>>
Microsoft AJAX Library Cheat Sheet(5): Number和Error类型的扩展
查看>>