public CategoryViewController(MainViewController mvc, string startCategory, string endCategory) : base() { rootmvc = mvc; start = startCategory; end = endCategory; }
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; }
public TableViewDataSource(List<RogetSection> list, MainViewController controller, SectionViewController sectionController) { this.list = list; mvc = controller; svc = sectionController; }
public SectionViewController(MainViewController mvc) : base() { rootmvc = mvc; }
public TableViewSource(List <RogetClass> list, MainViewController controller) { this.list = list; mvc = controller; }
public TableViewDataSource(List<RogetCategory> list, MainViewController controller) { this.list = list; mvc = controller; }
public TableViewSource(List<RogetClass> list, MainViewController controller) { this.list = list; mvc = controller; }