aboutsummaryrefslogtreecommitdiff
path: root/samples/Objective-C/FooAppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'samples/Objective-C/FooAppDelegate.m')
-rw-r--r--samples/Objective-C/FooAppDelegate.m12
1 files changed, 12 insertions, 0 deletions
diff --git a/samples/Objective-C/FooAppDelegate.m b/samples/Objective-C/FooAppDelegate.m
new file mode 100644
index 0000000..7e8710b
--- /dev/null
+++ b/samples/Objective-C/FooAppDelegate.m
@@ -0,0 +1,12 @@
+#import "FooAppDelegate.h"
+
+@implementation FooAppDelegate
+
+@synthesize window;
+
+- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
+{
+ // Insert code here to initialize your application
+}
+
+@end