我用代码创建了一个图像:
UIImageView *Event01 = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"Event01.jpg"]];
Event01.frame = CGRectMake(4, 48, 75, 75);
Event01.contentMode = UIViewContentModeScaleAspectFill;
Event01.clipsToBounds = YES;
[self.view addSubview:Event01];
但是我决定更改图像并删除图像并上传其他具有相同名称的图像,但是当我构建它时有旧照片。那么我应该怎么做才能更新 UIImage?
因为我在 MainStoryboard 上工作过,所以我删除了 Image 的名称,然后我上传了新的,然后我把名称放到了 imageview 中。
谢谢您的帮助,