我有一個UITableView,而在tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
,我希望能夠訪問框架所選擇的小區在這裏是我努力:做的UITableViewCell到一個UIView
UIView *cell = tableView.indexPathForSelectedRow;
UITableViewCell *cell = (UITableViewCell *)indexPath;
我希望能夠訪問所選單元格所在的視圖。
在此先感謝。