加載UITableView
時,我希望選擇唯一部分中的唯一一行,以便在用戶加載UITableView
時立即執行didSelectRowAtIndexPath
中的代碼。我試過下面的代碼,但它不執行didSelectRowAtIndexPath
部分中的代碼。有什麼想法嗎?視圖加載時UITableView自動選擇行
NSIndexPath *indexedPath = [NSIndexPath indexPathForRow:0 inSection:0];
[tableView selectRowAtIndexPath:indexedPath animated:YES scrollPosition: UITableViewScrollPositionNone];
我無法使用該代碼,因爲用戶必須物理地點擊要執行的底層代碼的行。目標是在視圖加載時執行代碼。 – 2013-04-25 12:50:49
好的..我的意思是說didSelectRowAtIndexPath不會被用戶點擊調用? – 2013-04-25 12:54:58
這工作。謝謝。 – 2013-04-25 13:05:07