UILabel でテキストに色を設定できます。しかし、UILabel で画像をテキストに設定できますか? 手伝って頂けますか?皆さんありがとう!
質問する
1955 次
3 に答える
1
UILabel *lbl = [[UILabel alloc]initWithFrame:CGRectMake(20, 220, 200, 30)];
[lbl setText:@"Hello"];
[lbl setTextColor:[UIColor yellowColor]];
[lbl setBackgroundColor:[UIColor redColor]];
if you need to set image for your UILabel, you can try like this:
[lbl setBackgroundColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@""]]];
[self.view addSubview:lbl];
textColor を画像として使用する場合は、これを行ってください
[lbl setTextColor:[UIColor colorWithPatternImage:[UIImage imageNamed:@"button_select.png"]]];
于 2012-12-06T04:03:25.947 に答える
0
UILabel
テキスト専用です。画像が必要な場合は、UIImageView
.
于 2012-12-06T03:37:57.023 に答える
0
を使用してリンクした画像を複製したい場合はUILabel
、ラベルのテキストとbackgroundColor. Then you use
UIColor colorWithPatternImage: for the orange color pattern. Then use that color for the label's
textColor` を設定することで実行できます。
于 2012-12-06T03:55:47.793 に答える