pickerTB = [[UIToolbar alloc]initWithFrame:CGRectMake(0,320,44)];[self.vIEw addSubvIEw:pickerTB];
如何添加一个按钮?它需要说“完成”,按钮必须能够稍后调用方法.
解决方法 试试这个,如果你想在uitoolbar的右侧添加DONE按钮,那么在完成按钮之前添加灵活的按钮UIbarbuttonItem *flexbutton = [[UIbarbuttonItem alloc] initWithbarbuttonSystemItem:UIbarbuttonSystemItemFlexibleSpace target:self action:nil]; UIbarbuttonItem *donebutton =[[UIbarbuttonItem alloc] initWithbarbuttonSystemItem:UIbarbuttonSystemItemDone target:self action:@selector(donebutton)]; NSArray *itemsArray = [NSArray arrayWithObjects:flexbutton,donebutton,nil]; [toolbar setItems:itemsArray];-(voID)donebutton{}
//更改工具栏样式
[toolbar setbarStyle:UIbarStyleBlackTranslucent];
//更改栏按钮颜色
[donebutton setTintcolor:[UIcolor blackcolor]];总结
以上是内存溢出为你收集整理的ios – 以编程方式向UIToolbar添加按钮全部内容,希望文章能够帮你解决ios – 以编程方式向UIToolbar添加按钮所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)