我有一個UITableViewController
和UITableViewCell
和Cell的XIB文件。如何推ViewController在UITableViewCell的@IBAction func
我的問題是如何從細胞中推UIViewController
?
in UITableViewCell。
@IBAction func pushBtnTapped(sender: AnyObject) {
// navigate to post view controller
let guest = self.storyboard?.instantiateViewControllerWithIdentifier("GuestCollectionVC") as! GuestCollectionVC
self.navigationController?.pushViewController(guest, animated: true)
}
我收到了一條錯誤消息。 self.storyboard
不是UITableCell的成員。
- 我知道還有另一種方法來實現這一點。但我必須在TableViewCell中實現。
檢查你的storyboard是否是你的單元格中的成員? –
不,我正在使用SlackTextViewController ...所以我通過使用代碼添加表的單元格:)感謝您的答覆! –