在.h文件中我聲明瞭這一點;以編程方式向UIImageView添加UIImage
IBOutlet UIImageView *image;
在.m文件中;
UIImage *image1 = [UIImage imageName:@"http://image.com/image.jpg"];
image = [[UIImageView alloc] initWithImage:image1];
image.frame = CGRectMake(0,0, 50,50);
[self.view addSubView:image];
和我連接從接口生成器的UIImageView。但我需要這樣做只能通過代碼(不使用Interface Builder)。有人可以幫助我修改代碼,以便我只能通過代碼來完成此操作嗎?
你說我需要刪除`IBOutlet`並從Interface Builder中刪除`UIImageView`,代碼將工作? – Illep 2011-12-15 16:47:09
是的。你有你需要的一切:你創建一個imageView,設置圖像,設置框架並將其添加到視圖。 – Chakalaka 2011-12-15 16:55:59