UIbutton *button = [UIbutton buttonWithType:UIbuttonTypeCustom];[button setBackgroundImage:[UIImage imagenamed:@"green.png"] forState:UIControlStatenormal];button.frame=CGRectMake(0.0,100.0,60.0,30.0);[button setTitle:@"Green" forState:UIControlStatenormal];[button addTarget:self action:@selector(yourAction) forControlEvents:UIControlEventtouchUpInsIDe];UIbarbuttonItem *mybutton = [[UIbarbuttonItem alloc] initWithCustomVIEw:button];
在这里,您需要一个绿色图像进行此 *** 作,您正在创建一个具有此图像的自定义按钮,并将其设置为UIbarbuttonItem的视图.
在iOS 5中,您可以使用:
[[UIbarbuttonItem appearance] setTintcolor:[UIcolor greencolor]];
请查看这些链接了解更多信息:
> UIAppearance Protocol
> User interface customization
以上是内存溢出为你收集整理的ios – 更改UIBarbuttonItems颜色全部内容,希望文章能够帮你解决ios – 更改UIBarbuttonItems颜色所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)