mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-14 23:21:50 +00:00
19 lines
328 B
Objective-C
Executable File
19 lines
328 B
Objective-C
Executable File
//
|
|
// main.m
|
|
// Leanote
|
|
//
|
|
// Created by life on 5/9/15.
|
|
// Copyright (c) 2015 Leanote.com. 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]));
|
|
}
|
|
}
|