0

如何在动态图像上放置文本或标签。因此,如果图像被移动或动画化,图像上的文本也应该移动。请帮忙

4

1 回答 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 回答