目前我正在使用简单的 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];