这是我的代码,我已经制作了一个按钮来显示图像。
这里_secondview
是我创建的视图,_colorlabel
是显示图像名称的标签。
- (IBAction)imagetry:(id)sender {
_secondview.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"/Users/yogeshtanwar/Desktop/tg.jpg"]];
_colorlabel.text = @"Tokyo Ghoul";
}