UIBarButtonItem|UIBarButtonItem 样式
样式 | 图片 |
---|---|
UIBarButtonSystemItemDone | 文章图片 |
UIBarButtonSystemItemCancel | 文章图片 |
UIBarButtonSystemItemEdit | 文章图片 |
UIBarButtonSystemItemSave | 文章图片 |
UIBarButtonSystemItemAdd | 文章图片 |
UIBarButtonSystemItemFlexibleSpace | 可变空白 |
UIBarButtonSystemItemFixedSpace | 不可变空白 |
UIBarButtonSystemItemCompose | 文章图片 |
UIBarButtonSystemItemReply | 文章图片 |
UIBarButtonSystemItemAction | 文章图片 |
UIBarButtonSystemItemOrganize | 文章图片 |
UIBarButtonSystemItemBookmarks | 文章图片 |
UIBarButtonSystemItemSearch | 文章图片 |
UIBarButtonSystemItemRefresh | 文章图片 |
UIBarButtonSystemItemStop | 文章图片 |
UIBarButtonSystemItemCamera | 文章图片 |
UIBarButtonSystemItemTrash | 文章图片 |
UIBarButtonSystemItemPlay | 文章图片 |
UIBarButtonSystemItemPause | 文章图片 |
UIBarButtonSystemItemRewind | 文章图片 |
UIBarButtonSystemItemFastForward | 文章图片 |
UIBarButtonSystemItemUndo | 文章图片 |
UIBarButtonSystemItemRedo | 文章图片 |
UIBarButtonSystemItemPageCurl | NS_ENUM_DEPRECATED_IOS(4_0, 11_0) |
- UIBarButtonSystemItemFlexibleSpace 和 UIBarButtonSystemItemFixedSpace不是按钮,而是调整按钮间距用的对象.让多个按钮等间距地分布在工具条中
- 在调用的过程中,使用 UIBarButtonSystemItemFlexibleSpace去占位,达到实现规范化的目的,效果如下:
代码:
- 不使用UIBarButtonSystemItemFlexibleSpace
文章图片
- 【UIBarButtonItem|UIBarButtonItem 样式】使用UIBarButtonSystemItemFlexibleSpace
文章图片
- UIBarButtonSystemItemFixedSpace则是替代特定位置控件,效果:
文章图片
// 可变距离
UIBarButtonItem *flexItem = [[UIBarButtonItem alloc] initWithBarButtonSystemItem:UIBarButtonSystemItemFlexibleSpace target:nil action:nil];
// 占位空白
UIBarButtonItem *emptyItem = [[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:nil action:nil];
// 添加可变距离及占位空白
[self setToolbarItems:[NSArray arrayWithObjects:flexItem, one, flexItem, two, flexItem, emptyItem, flexItem, four,flexItem,five,flexItem,nil]];
推荐阅读
- react-navigation|react-navigation 动态修改 tabBar 样式
- javascript|vue使用js-xlsx导出excel,可修改格子样式,例如背景颜色、字体大小、列宽等
- 地图|高德地图清除指定覆盖物 自定义覆盖物样式(完整dome)
- 数据尖兵软件|数据尖兵软件,详细介绍
- 技术栈
- Vue中点击谁让谁高亮,其他元素保持原来样式不变
- flutter-样式
- 阻止点击事件
- 微信小程序swiper小圆点默认样式改变
- Bootstrap中进度条样式详解