Skip to content
  • This project
    • Loading...
  • Sign in

金学艇 / ChildEdu

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • ChildEdu
  • ..
  • ios
  • main.m
  • jinwawa's avatar
    complete hot-update and build · 0e6e01b2
    0e6e01b2
    jinwawa authored 2019-09-19 15:24:36 +0800
main.m 244 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11


#import <UIKit/UIKit.h>

int main(int argc, char *argv[]) {
    
    NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    int retVal = UIApplicationMain(argc, argv, nil, @"AppController");
    [pool release];
    return retVal;
}