Uses UIWebView since we want to format the text display (with HTML)
Inheritance: Monospace11.WebViewControllerBase
        public override void ItemSelected(UICollectionView collectionView, NSIndexPath indexPath)
        {
            Speaker s = speakerData[indexPath.Row];
            if (bioVC == null)
                bioVC = new SpeakerBioViewController (s);
            else
                bioVC.Update (s);

            bioVC.Title = s.Name;
            NavigationController.PushViewController (bioVC, true);

            collectionView.DeselectItem (indexPath, false);
        }
Ejemplo n.º 2
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);
            }
Ejemplo n.º 3
0
        public override void ItemSelected(UICollectionView collectionView, NSIndexPath indexPath)
        {
            Speaker s = speakerData[indexPath.Row];

            if (bioVC == null)
            {
                bioVC = new SpeakerBioViewController(s);
            }
            else
            {
                bioVC.Update(s);
            }

            bioVC.Title = s.Name;
            NavigationController.PushViewController(bioVC, true);

            collectionView.DeselectItem(indexPath, false);
        }
 public WebViewDelegate(SpeakerBioViewController speakerViewController)
 {
     viewController = speakerViewController;
 }
            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);
            }
 public WebViewDelegate(SpeakerBioViewController bc)
 {
     _c = bc;
 }
 public WebViewDelegate(SpeakerBioViewController bc)
 {
     _c = bc;
 }
 public WebViewDelegate(SpeakerBioViewController speakerViewController)
 {
     viewController = speakerViewController;
 }