소스 검색

Add NSULRSessionDataTask to example requests

Ryan Olson 11 년 전
부모
커밋
51493322c3
1개의 변경된 파일3개의 추가작업 그리고 0개의 파일을 삭제
  1. 3 0
      Example/UICatalog/AAPLAppDelegate.m

+ 3 - 0
Example/UICatalog/AAPLAppDelegate.m

@@ -88,6 +88,9 @@
     NSURLSessionDataTask *dataTask = [mySession dataTaskWithURL:[NSURL URLWithString:@"https://flipboard.com/"]];
     [dataTask resume];
 
+    NSURLSessionDownloadTask *downloadTask = [mySession downloadTaskWithURL:[NSURL URLWithString:@"https://assets-cdn.github.com/images/icons/emoji/unicode/1f44d.png?v5"]];
+    [downloadTask resume];
+
     NSArray *requestURLStrings = @[ @"http://cdn.flipboard.com/serviceIcons/v2/social-icon-flipboard-96.png",
                                     @"http://lorempixel.com/400/400/",
                                     @"http://google.com",