嗨快问题我目前正在尝试将我的图像连接到Xcode中的图像视图,目前当我运行程序时,图像会出现,但是左上角会出现这种情况,我只是想知道哪一行为了将我的图像直接导入我的一个图像视图中,我缺少了一些代码。
由于
UIImageView *myImage = [[UIImageView alloc]
//Allocating space for the image
initWithImage:[UIImage imageNamed:@"TESTPIC.jpg"]];
//Selecting the image
[self.view addSubview:myImage];
//Displaying the Image
答案 0 :(得分:0)
您可以使用UIImageView的frame属性。有关详细信息,请参阅以下代码。
UIImageView *myImage = [[UIImageView alloc]
//Allocating space for the image
initWithImage:[UIImage imageNamed:@"test.png"]];
myImage.frame = CGRectMake(your x position, your y position, myImage.frame.size.width, myImage.frame.size.height);
//Selecting the image
[self.view addSubview:myImage];
希望它有效。