2012-07-01 51 views
1

目前我有兩種方法在單元格中顯示圖像,這將有助於表格順利運行,稍後我會使用lazytable?在每個單元格中,按鈕應該被賦予一個setimage還是添加一個imageview和一個設置的圖像一樣好?同樣在第一種方法中,我必須動態縮放每個圖像。謝謝!如何在一個有效的單元格中有效地顯示圖像

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

由於按鈕具有圖像特性,爲什麼添加圖像視圖按鈕,其推薦使用方法1

+0

我這樣做,因爲,因爲我不會有重新調整/調整圖像大小。有了setimage,我必須首先調整它到一定的寬度和高度,但我想這並不重要,謝謝 – sebi

相關問題