public override void RowSelected(UITableView tableView, NSIndexPath indexPath) { MIX10Xml.Speaker s = sectionElements[indexPath.Section][indexPath.Row]; if (bioVC == null) { bioVC = new SpeakerBioViewController(s); } else { bioVC.Update(s); } bioVC.Title = s.Name; _svc.NavigationController.PushViewController(bioVC, true); tableView.DeselectRow(indexPath, true); }
public void Update(MIX10Xml.Speaker speaker) { _speaker = speaker; LoadHtmlString (FormatText ()); }
public SpeakerBioViewController(MIX10Xml.Speaker speaker) : base() { _speaker = speaker; }
public void Update(MIX10Xml.Speaker speaker) { _speaker = speaker; LoadHtmlString(FormatText()); }