我有一個應用程序,檢查用戶是否有一個特定的文件下載與否,如果他們沒有提醒他們有機會下載它。這段代碼是從UITableViewCell中調用的,但我不知道如何調用帶有tableView的視圖控制器來模擬按下第一行(必需的文件總是在第一行)。模擬tableview行從TableViewcell選擇Swift
下面是一個代碼片段
if (fileLbl.text == baseMapDisplayname) {
let alertController = UIAlertController(title: "Basemap Not Downloaded", message: "Please first download the Offline Basemap", preferredStyle: .alert)
var rootViewController = UIApplication.shared.keyWindow?.rootViewController
if let navigationController = rootViewController as? UINavigationController {
rootViewController = navigationController.viewControllers.first
}
if let tabBarController = rootViewController as? UITabBarController {
rootViewController = tabBarController.selectedViewController
}
alertController.addAction(UIAlertAction(title: "Cancel", style: UIAlertActionStyle.cancel ,handler: nil))
alertController.addAction(UIAlertAction(title: "Download", style: UIAlertActionStyle.default,handler: { (action: UIAlertAction!) in
//TODO - Simulate action of selecting first row of tableview
//this does not work
let indexPath = IndexPath(row: 0, section: 0)
MainVC().tableView.selectRow(at: indexPath, animated: true, scrollPosition: .bottom)
MainVC().tableView.delegate?.tableView!(tableView, didSelectRowAt: indexPath)
}))
rootViewController?.present(alertController, animated: true, completion: nil)
}
在我看來,你正在創建MainVC的新實例,你不能使用自我? 如果你有正確的控制器實例selectRow應該工作,並且你也不需要委託,當自己已經是tableview委託。 – silentBob