Skip to content

Instantly share code, notes, and snippets.

Created February 5, 2012 19:23
Show Gist options
  • Save anonymous/1747537 to your computer and use it in GitHub Desktop.
Save anonymous/1747537 to your computer and use it in GitHub Desktop.
Stack Overflow - Question 9150287 - AppDelegate.cs
public partial class AppDelegate : UIApplicationDelegate
{
UIWindow window;
public PageViewController pageViewController;
public override bool FinishingLaunching (UIApplication app, NSDictionary options)
{
pageViewController = new PageViewController ("PageViewController", null);
window.RootViewController = pageViewController;
window.MakeKeyAndVisible();
return true;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment