我想以編程方式在tableview中選擇一個單元格。點擊selectRowAtIndexPath時出現SIGABORT錯誤。 myIndex的值爲1.我從一個已經實現了所需的tableview委託和數據源方法的viewController調用它。在tableview上調用selectRowAtIndexPath時發生Swift錯誤
override func viewDidAppear(animated: Bool) {
if myIndex != nil {
self.myTableView.selectRowAtIndexPath(NSIndexPath(index: myIndex), animated: false, scrollPosition: UITableViewScrollPosition.Middle)
}
}
你確定嗎? – Siriss