iOS   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – 以编程方式向UIToolbar添加按钮大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我以编程方式使用以下代码创建UIToolbar:

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添加按钮所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。
标签: