目前我有2种方法在一个单元格中显示图像,这种方式有助于表格顺利运行,我以后会使用lazytable吗?在每个单元格中,按钮应该是静止图像还是添加带有设置图像的图像视图一样好?同样在第一种方法中,我必须动态地缩放每个图像。谢谢!
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
UIImage *img = [UIImage imageWithData:"png image from url"];
[button setImage:img forState:UIControlStateNormal];
/// Or
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
UIImage *img = [UIImage imageWithData:"png image from url"];
UIImageView *imageView2 = [[UIImageView alloc] initWithImage:img];
[button2 addSubview:imageView2];
答案 0 :(得分:0)
由于按钮具有图像属性,为什么要将图像视图添加到按钮,建议使用方法1