Sample App ported to an universal iOS app with airprint enabled


git-svn-id: http://skia.googlecode.com/svn/trunk@1703 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h b/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h
new file mode 100644
index 0000000..17b0647
--- /dev/null
+++ b/experimental/iOSSampleApp/iPhone/AppDelegate_iPhone.h
@@ -0,0 +1,15 @@
+#import <UIKit/UIKit.h>
+#import "SkUINavigationController.h"
+@interface AppDelegate_iPhone : NSObject <UITableViewDelegate, UIApplicationDelegate> {
+    UIWindow *window;
+    SkUINavigationController* fRoot;
+    SkUIDetailViewController* fDetail;
+}
+
+@property (nonatomic, retain) IBOutlet UIWindow *window;
+@property (nonatomic, retain) IBOutlet SkUINavigationController* fRoot;
+@property (nonatomic, retain) IBOutlet SkUIDetailViewController* fDetail;
+
+- (IBAction)displaySampleList:(id)sender;
+@end
+