Note that there are some explanatory texts on larger screens.

plurals
  1. POTool bar is not visible in custom UIViewController
    primarykey
    data
    text
    <p>I am creating a master detail application using monotouch for iPad. In the master view I added, a custom UIViewController. This UIViewController has a tool bar at the top and 2 UITableView. I can only see the first UITableView. I cant see the tool bar and the other UItableView at the bottom. </p> <p>I am not sure if I need to turn on anything or configure anything to enable the visibility.</p> <p>I created outlet for each of the table views and toolbar.</p> <p>I would appreciate if anyone could shed some lights on this.</p> <p>Please see the image.</p> <p><img src="https://i.stack.imgur.com/ez8y9.png" alt="enter image description here"></p> <p>Thanks</p> <p>Balan Sinniah </p> <p>UPDATE : I have AppDelegate code as below</p> <pre><code>[Register ("AppDelegate")] public partial class AppDelegate : UIApplicationDelegate { // class-level declarations UIWindow window; UISplitViewController splitViewController; public override bool FinishedLaunching (UIApplication app, NSDictionary options) { // create a new window instance based on the screen size window = new UIWindow (UIScreen.MainScreen.Bounds); var controller = new RootViewController (); var navigationController = new UITabbedViewController(); var detailViewController = new UIDetailViewTabbedBarController(); splitViewController = new UISplitViewController (); splitViewController.WeakDelegate = detailViewController; splitViewController.ViewControllers = new UIViewController[] { navigationController, detailViewController }; window.RootViewController = splitViewController; navigationController.DetailViewController = detailViewController; // make the window visible window.MakeKeyAndVisible (); return true; } } </code></pre> <p>My Navigation Controller is UITabbedView Controller which has 2 UIViewController. I am adding the toolbar and 2 Table Views in one of the UIViewController. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload