テーブルビュー内にあるテーブルビューセル内にボタンがあり(明らかに)、テーブルビューはナビゲーションコントローラー内にあるviewController内にあります
UINavigationCont --> ViewController1 --> UITableView --> UITableViewCell --> UIButton --> (このボタンの IBAction から新しいコントローラーを起動します)
どうすればこれを達成できますか? ありがとう
- (IBAction)addButtonPressed:(UIButton *)sender {
ViewController1 *detailViewController = [[ViewController1 alloc]init];
[self.superview.delegate presentPopupViewController:detailViewController animationType:MJPopupViewAnimationFade];
}