**更新问题以反映在 UIIMAGEVIEW ALLOC 中添加“INIT”* * * 我将“imageView”作为变量,已在我的“.h”类中声明。在特定情况下,我被迫以编程方式将“imageView”向上移动约 10 个像素并且没有遇到任何运气。在查看当前 UIImageView ("imageView) 位置时,我确定 X/Y/WIDTH/HEIGHT 应该是 (78,214,170,120)。下面是我正在使用的代码,它可以工作但不显示 UIImageView/UIImage:
imageView = [[UIImageView alloc]init];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:img2String]]];
imageView.frame = CGRectMake(78,214,170,120);
imageView.image = image;
我会很感激任何帮助。