public CategoryViewController(MainViewController mvc, string startCategory, string endCategory)
     : base()
 {
     rootmvc = mvc;
     start = startCategory;
     end = endCategory;
 }
Пример #2
0
        public override bool FinishedLaunching(UIApplication app, NSDictionary options)
        {
            // Create the main view controller - the 'first' view in the app
            var vc = new MainViewController ();

            // Create a navigation controller, to which we'll add the view
            navigationController = new UINavigationController();
            navigationController.PushViewController(vc, false);
            navigationController.TopViewController.Title ="Roget's 1911";

            // Create the main window and add the navigation controller as a subview
            window = new UIWindow (UIScreen.MainScreen.Bounds);
            window.AddSubview(navigationController.View);
            window.MakeKeyAndVisible ();
            return true;
        }
 public PartsOfSpeechViewController(MainViewController mvc, RogetCategory displayCategory)
     : base()
 {
     rootmvc = mvc;
     partsOfSpeech = displayCategory.PartsOfSpeech;
 }
Пример #4
0
 public TableViewDataSource(List<RogetSection> list, MainViewController controller, SectionViewController sectionController)
 {
     this.list = list;
     mvc = controller;
     svc = sectionController;
 }
Пример #5
0
 public SectionViewController(MainViewController mvc)
     : base()
 {
     rootmvc = mvc;
 }
 public CategoryViewController(MainViewController mvc, string startCategory, string endCategory) : base()
 {
     rootmvc = mvc;
     start   = startCategory;
     end     = endCategory;
 }
Пример #7
0
 public TableViewSource(List <RogetClass> list, MainViewController controller)
 {
     this.list = list;
     mvc       = controller;
 }
 public TableViewDataSource(List<RogetCategory> list, MainViewController controller)
 {
     this.list = list;
     mvc = controller;
 }
Пример #9
0
 public TableViewSource(List<RogetClass> list, MainViewController controller)
 {
     this.list = list;
     mvc = controller;
 }
Пример #10
0
 public PartsOfSpeechViewController(MainViewController mvc, RogetCategory displayCategory) : base()
 {
     rootmvc       = mvc;
     partsOfSpeech = displayCategory.PartsOfSpeech;
 }