18 lines
351 B
Objective-C
18 lines
351 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// ScanExample
|
|
//
|
|
// Copyright (c) 2012 PayPal. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
|
|
// Override point for customization after application launch.
|
|
return YES;
|
|
}
|
|
|
|
@end
|