我将使用 addSubview 向图像添加标签,但这不起作用。
这里的代码:
.h
UIImageView *bgimage;
IBOutet UILabel *loadingLabel;
.m
loadingLabel.text =@"......";
bgimage = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,480)];
bgimage.image = [UIImage imageNamed:@"Wait.png"];
[self.view addSubview:bgimage];
[bgimage addSubview:loadingLabel];
截屏:
“Tisch wird reserviert ...”是加载标签,标签应该在 UiImage 中
这是带有来自第二个答案的代码的“布局”