我正在尝试以编程方式将图像添加到我的视图中,但我不知道如何使用故事板。
我是新手,所以任何帮助都会受到赞赏
任何人都可以提供帮助吗?
答案 0 :(得分:0)
您好先生所以您必须添加(.h文件)
@property (strong, nonatomic) UIImageView *yourImage;
这在你的ViewController(.m文件)
中 self.yourImage =[[UIImageView alloc] initWithFrame:CGRectMake(floatX,floatY,widthX,heightY)];
self.yourImage.image=[UIImage imageNamed:@"yourimagename"];
编辑:最后你必须
[self.view addSubview:self.yourImage];
答案 1 :(得分:0)
创建图像视图对象并将其添加到主视图中。
UIImageView *yourImage =[[UIImageView alloc] initWithFrame:CGRectMake(x,y,Width,height)];
[self.view addSubview:yourImage];
完成 :)