2016-02-09 01:12:39 +01:00

18 lines
416 B
Objective-C

//
// main.m
// PNImagePickerViewController
//
// Created by Giuseppe Nucifora on 02/09/2016.
// Copyright (c) 2016 Giuseppe Nucifora. All rights reserved.
//
@import UIKit;
#import "PNImagePickerViewControllerAppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([PNImagePickerViewControllerAppDelegate class]));
}
}