UITableViewController を使用しています。
アラート ビューを表示する代わりに、テーブルの特定の行に触れた後、別のページにリダイレクトしたいと考えています。
私はこのコードを持っていますが、動作しません
public override void RowSelected (UITableView tableView, NSIndexPath indexPath)
{
new UIAlertView("Row Selected", tableItems[indexPath.Row], null, "OK", null).Show();
tableView.DeselectRow (indexPath, true); // normal iOS behaviour is to remove the blue highlight
//call the next screen
if(this.accountRegistration== null) {
this.accountRegistration = new AccountRegistration();
}
this.NavigationController.PushViewController(this.accountRegistration, true);
}