public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     TTTGameHistoryViewController controller = new TTTGameHistoryViewController ();
     controller.Profile = Profile;
     controller.Game = Profile.Games [indexPath.Row];
     NavigationController.PushViewController (controller, true);
 }
Exemple #2
0
        public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
        {
            TTTGameHistoryViewController controller = new TTTGameHistoryViewController();

            controller.Profile = Profile;
            controller.Game    = Profile.Games [indexPath.Row];
            NavigationController.PushViewController(controller, true);
        }