Example #1
0
 public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
 {
     /*UIAlertController okAlertController = UIAlertController.Create(lstContacts.contacts[indexPath.Row].Name,
      *                                                                                                                              lstContacts.contacts[indexPath.Row].Phone,
      *                                                                                                                              UIAlertControllerStyle.Alert);
      * okAlertController.AddAction(UIAlertAction.Create("OK", UIAlertActionStyle.Default, null));
      * owner.PresentViewController(okAlertController, true, null);
      *
      * tableView.DeselectRow(indexPath, true);*/
     owner.OpenInfoPage(lstContacts.contacts[indexPath.Row].Name,
                        lstContacts.contacts[indexPath.Row].Phone,
                        lstContacts.contacts[indexPath.Row].PhotoID);
 }