gpt4 book ai didi

iphone - 是否可以在 iphone 的 UILabel 中设置两种颜色?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:24:55 25 4
gpt4 key购买 nike

目前我正在使用简单的 iPhone 应用程序,使用 UILabel 显示名称,如 Delivered minu,我想显示两种颜色,如 (Deliverd) 为黑色和 (minu) 为蓝色,这可能吗?请帮助我。

提前致谢

我试过了,但我无法解决这个问题:

 deliveredLabel.text = [NSString stringWithFormat:@"Delivered"]; 
deliveredLabel.textColor = [UIColor blackColor];
nameLabel.text = [NSString stringWithFormat:@"Minu"];
nameLabel.text.textColor = [UIColor blueColor];
label.text = [NSString stringWithFormat:@"%@ %@",deliveredLabel.text,name.text];

最佳答案

创建一个 UIView 并在这个标签中添加 2 个标签,文本为 Delivered,另一个标签为 Minu,并相应地设置颜色。

deliveredLabel.text = [NSString stringWithFormat:@"Delivered"]; 
deliveredLabel.textColor = [UIColor blackColor];
deliveredLabel.textAlignment = UITextAlignmentRight;
nameLabel.text = [NSString stringWithFormat:@"Minu"];
nameLabel.textColor = [UIColor blueColor];
nameLabel.textAlignment = UITextAlignmentLeft;

关于iphone - 是否可以在 iphone 的 UILabel 中设置两种颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11535010/

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