Files
tra-app/Ios/HBuilder-Hello/main.m
T
2025-08-01 17:03:19 +08:00

21 lines
376 B
Objective-C
Executable File

//
// 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[])
{
_uniArgc = argc;
_uniArgv = argv;
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}