From b01dcb775c98cc48abe65a91ef9bf093be875682 Mon Sep 17 00:00:00 2001 From: ruki Date: Mon, 2 Mar 2026 23:52:25 +0800 Subject: improve template dirs --- .../templates/objc/xcode/macapp/src/AppDelegate.m | 27 ++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 xmake/templates/objc/xcode/macapp/src/AppDelegate.m (limited to 'xmake/templates/objc/xcode/macapp/src/AppDelegate.m') diff --git a/xmake/templates/objc/xcode/macapp/src/AppDelegate.m b/xmake/templates/objc/xcode/macapp/src/AppDelegate.m new file mode 100644 index 000000000..da967d2ef --- /dev/null +++ b/xmake/templates/objc/xcode/macapp/src/AppDelegate.m @@ -0,0 +1,27 @@ +// +// AppDelegate.m +// test3 +// +// Created by ruki on 2020/4/4. +// Copyright © 2020 tboox. All rights reserved. +// + +#import "AppDelegate.h" + +@interface AppDelegate () + +@end + +@implementation AppDelegate + +- (void)applicationDidFinishLaunching:(NSNotification *)aNotification { + // Insert code here to initialize your application +} + + +- (void)applicationWillTerminate:(NSNotification *)aNotification { + // Insert code here to tear down your application +} + + +@end -- cgit v1.3.1