main.m
/* |
<codex> |
<abstract>Standard main file.</abstract> |
</codex> |
*/ |
#import <UIKit/UIKit.h> |
#import "VideoSnakeAppDelegate.h" |
int main(int argc, char *argv[]) |
{ |
int retVal = 0; |
@autoreleasepool { |
retVal = UIApplicationMain(argc, argv, nil, NSStringFromClass([VideoSnakeAppDelegate class])); |
} |
return retVal; |
} |
Copyright © 2016 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2016-09-28