/// <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) { Console.WriteLine("Blog Entry selected"); RSSEntry fi = rssvc.BlogFeed[indexPath.Row]; RssSessionsEntryViewController revc = new RssSessionsEntryViewController(fi.Title, fi.Content.ToString()); revc.Title = fi.Title; rssvc.NavigationController.PushViewController(revc, true); }