Inheritance: UIViewController
Esempio n. 1
0
 /// <summary>
 /// Display selected post details
 /// </summary>
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     var uivc = new PostViewController(posts.data[indexPath.Row]);
     uivc.Title = posts.data[indexPath.Row][email protected];
     AppDelegate.Current.NavController.PushViewController(uivc,true);
 }