現在、シンプルなiPhoneアプリケーションを使用しています。UILabelを使用して配信済みのminuなどの名前を表示し、(Deliverd)を黒、(minu)を青のように2色で表示したいのですが、可能ですか?私を助けてください。
おかげで前進
私はこれを試しましたが、これを修正できません:
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];