Monospace11.SpeakerBioViewController.Update C# (CSharp) Method

Update() public method

public Update ( MonkeySpace speaker ) : void
speaker MonkeySpace
return void
        public void Update(MonkeySpace.Core.Speaker speaker)
        {
            this.speaker = speaker;
            LoadHtmlString (FormatText ());
        }

Usage Example

コード例 #1
0
            public override void RowSelected(UITableView tableView, NSIndexPath indexPath)
            {
                MonkeySpace.Core.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);
            }
All Usage Examples Of Monospace11.SpeakerBioViewController::Update