2014-01-19 123 views
0

我如何製作一個tableview,其中的單元格彼此相鄰。每行有2個。像這樣的例子?在第二行中,有兩個圖像彼此相鄰。這可以通過自定義tablevieCells在tableview中完成嗎?UITableViewCell彼此相鄰

enter image description here

回答

0

是的,這可以在UITableViewCell中做一個自定義佈局但傾向於爲這種視圖使用集合視圖。

剛子類的UITableViewCell,添加新的方法

-(void)setCellWithNumberOfImages:(NSInteger)images withImage1:(UIimage *)image1 withImage2:(UIImage *)image2; 
if(image2 ==nil) 
//add only one UIimageView with image1 
else 
//add two imageviews. 
0

可以使用UICOllectionView這是非常容易和可定製的,你可以選擇你要多少項目有例如行和大小。

欲瞭解更多信息,請檢查:UICollectionView類參考