2012-03-26 77 views

回答

1

首先將UIImageView添加到UIViewController的視圖中。

創建NSMutableArray存儲UIImageViews,並在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath 
{ 
    imageView = [imageViewArray objectAtIndex:indexPath.row]; 
} 
相關問題