25 lines
444 B
Objective-C
25 lines
444 B
Objective-C
//
|
|
// Created by Jesse Squires
|
|
// http://www.hexedbits.com
|
|
//
|
|
//
|
|
// Documentation
|
|
// http://cocoadocs.org/docsets/JSMessagesViewController
|
|
//
|
|
//
|
|
// The MIT License
|
|
// Copyright (c) 2014 Jesse Squires
|
|
// http://opensource.org/licenses/MIT
|
|
//
|
|
|
|
#import "JSQAppDelegate.h"
|
|
|
|
@implementation JSQAppDelegate
|
|
|
|
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
|
|
{
|
|
return YES;
|
|
}
|
|
|
|
@end
|