使用addSubview添加一個label到圖片中。無法實現。
代碼:
.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];
loadingLabel 設置它的frame了嗎? 如果沒有,需要設置loadingLabel的frame. 這個frame的坐標點的位置必須是在(0,0) - (bgimage.size.width, bgimage.size.height) 中的任意一個點上