0
我想在同一個UIViewController中顯示不同的UIImageView取決於在UITableView中選擇哪個索引路徑行。我有一個不明智的方法,它爲不同的UIImageView創建了大量的UIViewController,但我不想這樣做。有沒有更聰明的方法可以實現這一點。你的幫助非常感謝。通過uitableview indexpath行在同一個uiviewcontroller中顯示不同的內容視圖
我想在同一個UIViewController中顯示不同的UIImageView取決於在UITableView中選擇哪個索引路徑行。我有一個不明智的方法,它爲不同的UIImageView創建了大量的UIViewController,但我不想這樣做。有沒有更聰明的方法可以實現這一點。你的幫助非常感謝。通過uitableview indexpath行在同一個uiviewcontroller中顯示不同的內容視圖
首先將UIImageView
添加到UIViewController
的視圖中。
創建NSMutableArray
存儲UIImageViews
,並在- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
imageView = [imageViewArray objectAtIndex:indexPath.row];
}