UIToolBar是工具条继承了UIView,通常作为UIBarButtonItem的容器,即一个barButtonItem代表工具条上的一个控件。
UIToolBar介绍及使用:
UIToolBar的属性:
*1.barStyle:4种,UIBarStyleDefault,UIBarStyleBlack,UIBarStyleBlackOpaque,UIBarStyleBlackTranslucent。用setBarStyle:设置。
*2.items:该属性值是一个NSArray对象,NSArray对象包含多个UIBarButtonItem对象,用于工具条中按钮的添加。通过setItems:设置
UIToolBar用法:
1.创建工具条
UIToolbar *toolBar=[UIToolbar alloc]initWithFrame:CGRectMake(CGFloat x,y,width,height);
2.设置工具条风格
toolBar.barStyle=UIBarStyle.../[toolBar setBarStyle:UIBarStyle...]
3.创建按钮
UIBarButtonItem *buttonItem=[[UIBarButtonItem alloc]initWithTitle:@"键盘附件" style:UIBarButtonItemStylePlain target:self action:nil];
UIBarButtonItem *spaceItem=[[UIBarButtonItem alloc]initWithBarButtonSystemItem:UIBarButtonSystemItemFixedSpace target:self action:nil];
4.将创建的按钮对象放到数组中
NSArray *buttonArray=[NSArray arrayWithObjects:buttonItem,spaceItem,nil];
5.为工具条设置按钮即把存有按钮对象的数组放到工具条中
toolBar.items=buttonArray/[toolBar setItems:buttonArray]
6.将工具条添加到相关界面或者视图或者相关空间中。
网友评论