Skip to content

Instantly share code, notes, and snippets.

@mwbrooks
Created January 28, 2011 18:18
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mwbrooks/800681 to your computer and use it in GitHub Desktop.
Save mwbrooks/800681 to your computer and use it in GitHub Desktop.
Load a PhoneGap-iPhone app from a custom start page.
//
// UntitledAppDelegate.m
// Untitled
//
// Created by Michael Brooks on 11-01-28.
// Copyright __MyCompanyName__ 2011. All rights reserved.
//
#import "UntitledAppDelegate.h"
#import "PhoneGapViewController.h"
@implementation UntitledAppDelegate
// ...
+ (NSString*) startPage
{
return @"hello.html";
}
// ...
@end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment