0
私は私の のUITableViewCellボタンのクリックから新しいのViewControllerにポップオーバーを使用していますが、私はこのエラー Main.storyboardが取得しています: プロパティ= anchorView先=>UITableViewCellボタンからpopover segueを追加する方法swift 3.0をクリックしますか?ここで
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
if(tableView == self.table_view_one) {
var cell = table_view_one.dequeueReusableCell(withIdentifier: "first_cell", for: indexPath) as! first_cell
cell.first_view_time_btn.addTarget(self, action: #selector(Iop_gonio_ViewController.someAction), for: .touchUpInside)
return cell
}
}
func someAction() {
self.performSegue(withIdentifier: "first_time_btn", sender: self)
}
:接続をコンパイルできませんでした
https://stackoverflow.com/a/41887007/5461400 –