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

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

//UIToolBar  是导航控制器默认隐藏的工具条    //设置UIToolBar的隐藏状态    self.navigationController.toolbarHidden = NO;        //如何找到UIToolBar   self.navigationController.toolbar    //UIToolBar高度:44        //设置UIToolBar类型:barStyle    self.navigationController.toolbar.barStyle = UIBarStyleDefault;    //设置UIToolBar的颜色:barTintColor    self.navigationController.toolbar.barTintColor = [UIColor redColor];    //设置UIToolBar的图片    [self.navigationController.toolbar setBackgroundImage:[UIImage imageNamed:@"toolBar.png"] forToolbarPosition:UIToolbarPositionBottom barMetrics:UIBarMetricsDefault];        //UIBarButtonItem  文字类型    UIBarButtonItem *wordButton = [[UIBarButtonItem alloc] initWithTitle:@"button" style:UIBarButtonItemStylePlain target:self action:@selector(barButtonClick:)];        //UIBarButtonItem  图片类型    UIBarButtonItem *imageButton = [[UIBarButtonItem alloc] initWithImage:[UIImage imageNamed:@"itemImage.png"] style:UIBarButtonItemStylePlain target:self action:@selector(imageButtonClick:)]; //UIBarButtonItem 系统类型 UIBarButtonItem *systemButton = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemBookmarks target:self action:@selector(systemButtonClick:)]; //创建空格 //会均分掉空白部分,空格的点击事件不会实现,无效 UIBarButtonItem *space = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:self action:@selector(spaceClick:)]; //向UIToolBar上面添加按钮 self.toolbarItems //需要接收数组:数组里面的元素必须是UIBarButtonItem类型 self.toolbarItems = @[space, wordButton, space, imageButton, space, systemButton, space];

 

转载于:https://www.cnblogs.com/hyuganatsu/p/UIToolBar.html

你可能感兴趣的文章
第十七天-企业应用架构模式-会话状态模式
查看>>
智能直播审核方案:视频云智能业务截帧策略
查看>>
以太坊Truffle框架构建Dapp
查看>>
闭包,sync使用细节
查看>>
Vue+thinkJs博客网站(一)之vue多页面应用的webpack3配置
查看>>
PHP面试题
查看>>
拖拽上传功能的实现及原理
查看>>
Spring校验@RequestParams和@PathVariables参数
查看>>
移动端H5页面阻止图片和文字被选中
查看>>
聊聊flink TaskManager的memory大小设置
查看>>
怎么将微博图片中的水印去掉
查看>>
[实践系列]Babel原理
查看>>
浅谈SLAM的回环检测技术
查看>>
GraphQL 在 koa 框架中的实践
查看>>
网站内部页面如何正确的微调
查看>>
dubbo源码解析(八)远程通信——开篇
查看>>
在Docker中使用Xdebug
查看>>
snabbdom.js(二)
查看>>
【跃迁之路】【657天】程序员高效学习方法论探索系列(实验阶段414-2018.12.01)...
查看>>
Testng(二):监听
查看>>