|
//
// main.m
// ThePaperBase
//
// Created by scar1900 on 15/7/15.
// Copyright (c) 2015年 scar1900. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
if (EnableNBS == 1) {
[NBSAppAgent startWithAppID:NBSAppKey];
}
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
|