ios – 以编程方式向UIToolbar添加按钮

ios – 以编程方式向UIToolbar添加按钮,第1张

概述我以编程方式使用以下代码创建UIToolbar: pickerTB = [[UIToolbar alloc]initWithFrame:CGRectMake(0, 0, 320, 44)];[self.view addSubview:pickerTB]; 如何添加一个按钮?它需要说“完成”,按钮必须能够稍后调用方法. 试试这个,如果你想在uitoolbar的右侧添加DONE按钮,那么在完成按钮之 我以编程方式使用以下代码创建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添加按钮所遇到的程序开发问题。

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

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1005583.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-22
下一篇 2022-05-22

发表评论

登录后才能评论

评论列表(0条)

保存