我會用addSubview爲圖像添加一個標籤,但這不起作用。addSubview不起作用
這裏的代碼:
.h
UIImageView *bgimage;
IBOutet UILabel *loadingLabel;
.m
loadingLabel.text [email protected]"......";
bgimage = [[UIImageView alloc] initWithFrame:CGRectMake(0,0,320,480)];
bgimage.image = [UIImage imageNamed:@"Wait.png"];
[self.view addSubview:bgimage];
[bgimage addSubview:loadingLabel];
截圖:
「蒂什wird reserviert ......」 是loadinglabel是標籤768,16是在UIImage的
Th是從第二個答案的代碼「佈局」
好的,謝謝我會測試這段代碼evenig – Nils
這意味着我需要在我的xib文件上使用UIImageView嗎?目前我沒有Uiimageview在我的xib文件上,只有標籤 – Nils
你的UILabel被添加到xib文件中,而是在xib上添加UIImageView並在其上添加UILabel – shuvo