How To Add Monotouch Dialog to FlyoutNaviagtionController

General Tech Learning Aids/Tools 2 years ago

0 1 0 0 0 tuteeHUB earn credit +10 pts

5 Star Rating 1 Rating

Posted on 16 Aug 2022, this text provides information on Learning Aids/Tools related to General Tech. Please note that while accuracy is prioritized, the data presented might not be entirely correct or up-to-date. This information is offered for general knowledge and informational purposes only, and should not be considered as a substitute for professional advice.

Take Quiz To Earn Credits!

Turn Your Knowledge into Earnings.

tuteehub_quiz

Answers (1)

Post Answer
profilepic.png
manpreet Tuteehub forum best answer Best Answer 2 years ago

 

I'm a noob to monotouch and can't manage to add table views to flyoutnavigation controller. Does anyone have an example?

** update

My setup is a bit complicated and after much hacking managed to get the static table cells displayed on my storyboard with the below config.

tab bar controller
|
-tab 1
|
-tab 2 - nav controller
         |
         uiview controller A -  flyout nav A --> uiview controller A1...A3
         |
         uiview controller B -  flyout nav B --> tableview controller B1 (static cells)

I've cast the tableview controllers as uiview controllers on the flyout navs' setup thus allowing the tableviewcontroller to be displayed correctly and navigated to main uiview controllers via sergues. For example in the flyouts setup:

NavigationRoot = new RootElement ("FlyoutNavigationB") {
    new Section ("Pages") {
        new StringElement ("A Table View with static cells")
    }
},


ViewControllers = new [] {
  TableViewControllerB1 as UIViewController,
},              

This hack seems to work but cleaner solutions are warmly invited (as I'm only 2weeks dev experience with monotouch) and feel a little saddened that I have uiview controllers sitting unattached on the storyboard without ability to do sergues via the flyout nav. It almost behaves like old school xib development.

Anyway I'm experimenting with tying this upto monotouch dialog now but not yet sure how. Comments most welcome to aid my learning :P

* update

Ok I think I got it working by creating a subclassed dialogviewcontroller. Then passing this subclass instance into the ViewControllers array in flyoutnavigationcontroller like so:

public partial class MyDvcController : DialogViewController
{
    public MyDvcController (UINavigationController nav): base (UITableViewStyle.Grouped, null)
    {

        navigation = nav;
        Root = new RootElement ("Demos"){
            new Section ("Element API"){
                new StringElement ("iPhone Settings Sample", DemoElementApi),

            }
        };
    }
}

In my calling flyoutnav controller:

// Supply view controllers corresponding to menu items:
            ViewControllers = new [] {
                new UIViewController { View = new UILabel { Text = "Address txt" }, Title = "Address" },
                new MyDvcController(NavigationController) as UIViewController                                                                                                    
            }

My wish list is almost complete...now how to add custom upickerviews with lovely transparent input accessory views wired to inputviews so they show automatically from calling monotouch dialog elements...hmmmm...another quest awaits...

No matter what stage you're at in your education or career, TuteeHub will help you reach the next level that you're aiming for. Simply,Choose a subject/topic and get started in self-paced practice sessions to improve your knowledge and scores.