作業中の iPhone アプリケーションのラベルに ascii 値を印刷しようとしています。出力を次のようにしたいのですが、どうすればよいですか?
質問する
896 次
1 に答える
1
myLabel.text = @"Cutomer's First Name*";
TTTAttributedLabelを使用できる異なる色のテキストを作成するために編集されました。以下はコードです
TTTAttributedLabel *label = [[TTTAttributedLabel alloc] initWithFrame:CGRectMake(20, 20, 200, 200)];
NSString* text = @"Cutomer's First Name*";
[label setText:text afterInheritingLabelAttributesAndConfiguringWithBlock:^(NSMutableAttributedString *mutableAttributedString){
//NSMutableAttributedString *mutableAttributedString;
NSRange whiteRange = [text rangeOfString:@"*"];
if (whiteRange.location != NSNotFound) {
[mutableAttributedString addAttribute:(NSString *)kCTForegroundColorAttributeName value:(id)[UIColor redColor].CGColor range:whiteRange];
}
return mutableAttributedString;
}];
label.font = [UIFont fontWithName: @"Helvetica Neue" size: 10];
于 2012-07-26T13:38:03.533 に答える