• This project
    • Loading...
  • Sign in

hh_public / hh.uni-sdk.demo

Logo
Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hh.uni-sdk.demo
  • HH-Uni_iOSDemo
  • HBuilder-ExampleDemo
  • HBuilder-Hello
  • main.m
  • add iOS support · b905fd2b
    b905fd2b Browse Files
    chengyanfang authored 2021-05-31 11:03:12 +0800
main.m 334 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 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]));
    }
}