2012-08-03 41 views

回答

0

首先,你的意思是每個圖像?您可以使用一個陣列來完成此操作,並使用圖像進行填充。

你這樣做你的表視圖cellForRowAtIndexPath方法,通過告訴表中查看它的細胞圖像屬性將小區的指數在充滿數組中的對象,如:

cell.imageView.image = [UIImage imageNamed:[myArray objectAtIndex:indexPath.row]]; 
+0

感謝NSPostWhendle,我正在嘗試將每個用戶的圖片放在UITableView中從數組中推入。 – 2012-08-03 13:04:47

1

你可以做這樣的事情:

NSArray *photos = [[NSArray arrayWithObjects: 
         [UIImage imageNamed:@"1.png"], 
         [UIImage imageNamed:@"2.png"], 
         [UIImage imageNamed:@"3.png"], 
         [UIImage imageNamed:@"4.png"], 
         nil] retain]; // Arrange images in the same order your table data is arranged. 

現在,在cellForRowAtIndexPath:方法:

cell.imageView.image = [photos objectAtIndex:indexPath.row]; 
+0

謝謝OhhMee,但用戶只會從庫中選擇一張圖片。我可能會誤解。 – 2012-08-03 13:02:10