動画像にテキストやラベルを配置する方法。画像が移動またはアニメーション化された場合、画像上のテキストも移動する必要があります。助けてください
user2811422
質問する
50 次
1 に答える
1
ラベルを UIImageView のサブビューとして追加できますか?
UIImageView *imageV = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"car.png"]];
[imageV setFrame:CGRectMake(0, 0, 100, 100)];
UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 40, 10)];
label.text = @"Test";
[imageV addSubview:label];
ほんの一例です...
于 2013-10-04T07:24:48.807 に答える