| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213 |
- /*
- File: AAPLAppDelegate.m
- Abstract: The application-specific delegate class.
- Version: 2.12
-
- Disclaimer: IMPORTANT: This Apple software is supplied to you by Apple
- Inc. ("Apple") in consideration of your agreement to the following
- terms, and your use, installation, modification or redistribution of
- this Apple software constitutes acceptance of these terms. If you do
- not agree with these terms, please do not use, install, modify or
- redistribute this Apple software.
-
- In consideration of your agreement to abide by the following terms, and
- subject to these terms, Apple grants you a personal, non-exclusive
- license, under Apple's copyrights in this original Apple software (the
- "Apple Software"), to use, reproduce, modify and redistribute the Apple
- Software, with or without modifications, in source and/or binary forms;
- provided that if you redistribute the Apple Software in its entirety and
- without modifications, you must retain this notice and the following
- text and disclaimers in all such redistributions of the Apple Software.
- Neither the name, trademarks, service marks or logos of Apple Inc. may
- be used to endorse or promote products derived from the Apple Software
- without specific prior written permission from Apple. Except as
- expressly stated in this notice, no other rights or licenses, express or
- implied, are granted by Apple herein, including but not limited to any
- patent rights that may be infringed by your derivative works or by other
- works in which the Apple Software may be incorporated.
-
- The Apple Software is provided by Apple on an "AS IS" basis. APPLE
- MAKES NO WARRANTIES, EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION
- THE IMPLIED WARRANTIES OF NON-INFRINGEMENT, MERCHANTABILITY AND FITNESS
- FOR A PARTICULAR PURPOSE, REGARDING THE APPLE SOFTWARE OR ITS USE AND
- OPERATION ALONE OR IN COMBINATION WITH YOUR PRODUCTS.
-
- IN NO EVENT SHALL APPLE BE LIABLE FOR ANY SPECIAL, INDIRECT, INCIDENTAL
- OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
- INTERRUPTION) ARISING IN ANY WAY OUT OF THE USE, REPRODUCTION,
- MODIFICATION AND/OR DISTRIBUTION OF THE APPLE SOFTWARE, HOWEVER CAUSED
- AND WHETHER UNDER THEORY OF CONTRACT, TORT (INCLUDING NEGLIGENCE),
- STRICT LIABILITY OR OTHERWISE, EVEN IF APPLE HAS BEEN ADVISED OF THE
- POSSIBILITY OF SUCH DAMAGE.
-
- Copyright (C) 2014 Apple Inc. All Rights Reserved.
-
- */
- #import "AAPLAppDelegate.h"
- #if DEBUG
- #import <FLEX/FLEX.h>
- #import "Person.h"
- #if __has_include(<Realm/Realm.h>)
- #import "Dog.h"
- #import "Owner.h"
- #endif
- #endif
- @interface AAPLAppDelegate () <NSURLConnectionDataDelegate, NSURLSessionDataDelegate>
- @property (nonatomic) NSTimer *repeatingLogExampleTimer;
- @property (nonatomic) NSMutableArray *connections;
- @end
- @implementation AAPLAppDelegate
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- #if DEBUG
- [[FLEXManager sharedManager] showExplorer];
- [[FLEXManager sharedManager] setNetworkDebuggingEnabled:YES];
- [self sendExampleNetworkRequests];
- self.repeatingLogExampleTimer = [NSTimer scheduledTimerWithTimeInterval:1.0 target:self selector:@selector(sendExampleLogMessage) userInfo:nil repeats:YES];
- [[NSUserDefaults standardUserDefaults] setObject:@"foo" forKey:@"FLEXExamplePrefFoo"];
-
- // For testing unarchiving of objects
- NSString *documents = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0];
- NSString *whereToSaveBob = [documents stringByAppendingPathComponent:@"Bob.plist"];
- [NSKeyedArchiver archiveRootObject:[Person bob] toFile:whereToSaveBob];
- #if __has_include(<Realm/Realm.h>)
- [self setUpRealm];
- #endif
-
- #endif
- return YES;
- }
- - (void)sendExampleLogMessage
- {
- // To show off the system log viewer, send 20 example log messages at 1 second intervals.
- static NSInteger count = 0;
- NSLog(@"Example log %ld", (long)count++);
- if (count > 20) {
- [self.repeatingLogExampleTimer invalidate];
- }
- }
- #pragma mark - Networking Example
- - (void)sendExampleNetworkRequests
- {
- // Async NSURLConnection
- [NSURLConnection sendAsynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"https://api.github.com/repos/Flipboard/FLEX/issues"]] queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
- }];
- // Sync NSURLConnection
- dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
- [NSURLConnection sendSynchronousRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"http://lorempixel.com/320/480/"]] returningResponse:NULL error:NULL];
- });
- // NSURLSession
- NSURLSessionConfiguration *config = NSURLSessionConfiguration.defaultSessionConfiguration;
- config.timeoutIntervalForRequest = 10.0;
- NSURLSession *mySession = [NSURLSession sessionWithConfiguration:config delegate:self delegateQueue:[NSOperationQueue mainQueue]];
- NSMutableArray *pendingTasks = [NSMutableArray array];
- // NSURLSessionDataTask with delegate
- [pendingTasks addObject:[mySession dataTaskWithURL:[NSURL URLWithString:@"http://cdn.flipboard.com/serviceIcons/v2/social-icon-flipboard-96.png"]]];
- // NSURLSessionDownloadTask with delegate
- [pendingTasks addObject:[mySession downloadTaskWithURL:[NSURL URLWithString:@"https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png?v5"]]];
- // Async NSURLSessionDownloadTask
- [pendingTasks addObject:[NSURLSession.sharedSession downloadTaskWithURL:[NSURL URLWithString:@"http://lorempixel.com/1024/1024/"] completionHandler:^(NSURL *location, NSURLResponse *response, NSError *error) {
- }]];
- // Async NSURLSessionDataTask
- [pendingTasks addObject:[NSURLSession.sharedSession dataTaskWithURL:[NSURL URLWithString:@"https://api.github.com/emojis"] completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
- }]];
- // Async NSURLSessionUploadTask
- NSMutableURLRequest *uploadRequest = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://google.com/"]];
- uploadRequest.HTTPMethod = @"POST";
- NSData *data = [@"q=test" dataUsingEncoding:NSUTF8StringEncoding];
- [pendingTasks addObject:[mySession uploadTaskWithRequest:uploadRequest fromData:data completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
- }]];
- // Remaining requests made through NSURLConnection with a delegate
- NSArray *requestURLStrings = @[ @"http://lorempixel.com/400/400/",
- @"http://google.com",
- @"http://search.cocoapods.org/api/pods?query=FLEX&amount=1",
- @"https://api.github.com/users/Flipboard/repos",
- @"http://info.cern.ch/hypertext/WWW/TheProject.html",
- @"https://api.github.com/repos/Flipboard/FLEX/issues",
- @"https://cloud.githubusercontent.com/assets/516562/3971767/e4e21f58-27d6-11e4-9b07-4d1fe82b80ca.png",
- @"http://hipsterjesus.com/api?paras=1&type=hipster-centric&html=false",
- @"http://lorempixel.com/750/1334/" ];
- NSTimeInterval delayTime = 10.0;
- const NSTimeInterval stagger = 1.0;
- // Send off the NSURLSessionTasks (staggered)
- for (NSURLSessionTask *task in pendingTasks) {
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayTime * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- [task resume];
- });
- delayTime += stagger;
- }
- // Begin the NSURLConnection requests (staggered)
- self.connections = [NSMutableArray array];
- for (NSString *urlString in requestURLStrings) {
- dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(delayTime * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
- NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:urlString]];
- [self.connections addObject:[NSURLConnection connectionWithRequest:request delegate:self]];
- });
- delayTime += stagger;
- }
- }
- - (void)URLSession:(NSURLSession *)session dataTask:(NSURLSessionDataTask *)dataTask didReceiveResponse:(NSURLResponse *)response completionHandler:(void (^)(NSURLSessionResponseDisposition))completionHandler
- {
- completionHandler(NSURLSessionResponseAllow);
- }
- - (void)connectionDidFinishLoading:(NSURLConnection *)connection
- {
- [self.connections removeObject:connection];
- }
- - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error
- {
- [self.connections removeObject:connection];
- }
- #if __has_include(<Realm/Realm.h>)
- - (void)setUpRealm
- {
- NSString *destinationPath = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES).firstObject;
- destinationPath = [destinationPath stringByAppendingPathComponent:@"dogs.realm"];
- if ([NSFileManager.defaultManager fileExistsAtPath:destinationPath isDirectory:nil]) {
- return;
- }
-
- NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"dogs" ofType:@"realm"];
- if (resourcePath == nil) {
- return;
- }
-
- NSError *error = nil;
- [NSFileManager.defaultManager copyItemAtPath:resourcePath toPath:destinationPath error:&error];
- }
- #endif
- @end
|