Questions tagged «textcolor»

15
您如何使用NSAttributedString?
NSString或NSMutableStrings不能使用多种颜色。因此,我听说了iPad SDK 3.2(或3.2左右)中NSAttributedString引入的,并且从iPhone SDK 4.0 beta版开始在iPhone上可用。 我想要一个带有三种颜色的线。 我不使用3个单独的NSString的原因是,因为三个NSAttributedString子字符串中每个子字符串的长度经常变化,所以我宁愿不要使用任何计算来重新定位3个单独的NSString对象。 如果有可能使用NSAttributedString我如何进行以下操作-(如果无法使用NSAttributed字符串,您将如何做): 编辑: 请记住,@"first",@"second"并@"third"会在任何时间其他字符串替换。因此,使用硬编码的NSRange值将不起作用。


4
UIButton标题文字颜色
我正在设置文字颜色 UIButton headingButton.titleLabel.textColor = [UIColor colorWithRed:36/255.0 green:71/255.0 blue:113/255.0 alpha:1.0]; 它不会更改我正在使用的其他代码中使用的相同代码的颜色。

11
如何在Android 5中更改默认对话框按钮的文本颜色
我的应用程序中有很多警报对话框。这是默认布局,但我要在对话框中添加肯定和否定按钮。因此,按钮将获得默认的Android 5文本颜色(绿色)。我试图更改它,但没有成功。知道如何更改文字颜色吗? 我的自定义对话框: public class MyCustomDialog extends AlertDialog.Builder { public MyCustomDialog(Context context,String title,String message) { super(context); LayoutInflater inflater = (LayoutInflater) context.getSystemService( Context.LAYOUT_INFLATER_SERVICE ); View viewDialog = inflater.inflate(R.layout.dialog_simple, null, false); TextView titleTextView = (TextView)viewDialog.findViewById(R.id.title); titleTextView.setText(title); TextView messageTextView = (TextView)viewDialog.findViewById(R.id.message); messageTextView.setText(message); this.setCancelable(false); this.setView(viewDialog); } } 创建对话框: MyCustomDialog builder = new MyCustomDialog(getActivity(), "Try …



10
如何在Swift中设置UILabel的textColor
当我尝试使用代码将UILabel的颜色设置为另一个UILabel的颜色时 myLabel.textColor = otherLabel.textColor 它不会改变颜色。但是,当我使用此代码时, myLabel.textColor = UIColor.redColor() 它可以正确更改颜色。第一行有什么问题?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.