gpt4 book ai didi

ios - 如何更改 UIActionSheet 中文本按钮的颜色?

转载 作者:行者123 更新时间:2023-11-29 02:41:00 30 4
gpt4 key购买 nike

在 UIActionSheet 按钮中,文本颜色为蓝色。如何设置为红色或绿色或黑色?

最佳答案

使用这个简单的方法更改文本颜色。

- (void) changeTextColorForUIActionSheet:(UIActionSheet*)actionSheet 
{
UIColor *tintColor = [UIColor redColor];

NSArray *actionSheetButtons = actionSheet.subviews;
for (int i = 0; [actionSheetButtons count] > i; i++)
{
UIView *view = (UIView*)[actionSheetButtons objectAtIndex:i];
if([view isKindOfClass:[UIButton class]])
{
UIButton *btn = (UIButton*)view;
[btn setTitleColor:tintColor forState:UIControlStateNormal];
}
}
}

关于ios - 如何更改 UIActionSheet 中文本按钮的颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25802940/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com