Facebook.AppDelegate.TableViewSource.RowSelected C# (CSharp) Method

RowSelected() public method

Display selected post details
public RowSelected ( UITableView tableView, NSIndexPath indexPath ) : void
tableView UITableView
indexPath NSIndexPath
return void
            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);
            }