feat: 智念app iOS 第一次提交

This commit is contained in:
zoujing
2026-05-10 14:37:17 +08:00
commit ef4415bc12
196 changed files with 7196 additions and 0 deletions

18
HBuilder-Hello/main.m Executable file
View File

@@ -0,0 +1,18 @@
//
// main.m
// HBuilder-Hello
//
// Created by DCloud on 7/31/14.
// Copyright (c) 2014 DCloud. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}