Bars
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Bars相关的知识,希望对你有一定的参考价值。
1.UIBarButtonItem
放置在toolbar或uinavigationitem上,可以设置点击item触发的方法调用;
初始化方法:
- (instancetype)initWithCustomView:(UIView *)customView; --用自定义view初始化 - (instancetype)initWithImage:(UIImage *)image style:(UIBarButtonItemStyle)style target:(id)target action:(SEL)action; --用图片初始化
属性:
target,action用于设置点击item后,触发的方法调用;
width 用于设置宽度,item的高度似乎不可以设置;
UIBarMetrics 表示设备横屏还是竖屏的枚举;
2. UITabBarItem
放在tabbar上,与uibarbuttonitem区别在于,uitabbaritem不可以设置点击时触发的方法;
初始化方法:
- (instancetype)initWithTitle:(NSString *)title image:(UIImage *)image selectedImage:(UIImage *)selectedImage;--可以设置点击item和不点击时的image
以上是关于Bars的主要内容,如果未能解决你的问题,请参考以下文章
D3.js中Stacked-to-Grouped Bars详解
为啥我在设置中收到“'Bars' 不能用作实体类型 'Foo' 的属性”?
Python使用matplotlib可视化发散型条形图发散条形图(Diverging Bars)是一种可以同时处理负值和正值的条形图并按照大小排序区分数据(Diverging Bars)