Beispiel #1
0
            /// <summary>
            /// If there are subsections in the hierarchy, navigate to those
            /// ASSUMES there are _never_ Categories hanging off the root in the hierarchy
            /// </summary>
            public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
            {
                Session s = _sessions[indexPath.Row];

                Console.WriteLine("SessionsViewController:TableViewDelegate.RowSelected: Label=");
                SessionViewController sessionView = new SessionViewController(s);

                sessionView.Title = s.Title;
                _svc.NavigationController.PushViewController(sessionView, true);
            }
 /// <summary>
 /// If there are subsections in the hierarchy, navigate to those
 /// ASSUMES there are _never_ Categories hanging off the root in the hierarchy
 /// </summary>
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     Session s = _sessions[indexPath.Row];
     Console.WriteLine("SessionsViewController:TableViewDelegate.RowSelected: Label=");
     SessionViewController sessionView = new SessionViewController(s);
     sessionView.Title = s.Title;
     _svc.NavigationController.PushViewController(sessionView, true);
 }