mirror of
https://github.com/ZipArchive/ZipArchive.git
synced 2026-05-31 10:27:32 +00:00
23 lines
380 B
Objective-C
23 lines
380 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// ObjectiveCExample
|
|
//
|
|
// Created by Sean Soper on 10/23/15.
|
|
//
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
// Override point for customization after application launch.
|
|
return YES;
|
|
}
|
|
|
|
@end
|