1_SimpleTableView/SimpleTableView/APLAppDelegate.m

 
/*
 Copyright (C) 2016 Apple Inc. All Rights Reserved.
 See LICENSE.txt for this sample’s licensing information
 
 Abstract:
 Application delegate that sets up the root view controller.
 */
 
#import "APLAppDelegate.h"
 
@implementation APLAppDelegate
 
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    return YES;
}
                            
@end