[[151719]] This article mainly includes the following contents: (1) Direct method using NSURLConnection (2) Using NSURLConnection proxy method (3) Direct method using NSURLSession (4) Using NSURLSession proxy method (5) Using AFNetworking Additional features: (1) Use AFNetworkReachabilityManager in AFNetworking to check the network status: AFNetworkReachabilityStatusReachableViaWiFi: Wi-Fi network AFNetworkReachabilityStatusReachableViaWWAN: 2G/3G/4G cellular network AFNetworkReachabilityStatusNotReachable: Not connected to the network
(2) Use AFNetworkActivityIndicatorManager in AFNetworking to start the network activity indicator: - # import "AFNetworkActivityIndicatorManager.h"
-
- [AFNetworkActivityIndicatorManager sharedManager].enabled = YES;
The effect is as follows: ViewController.h - # import @interface ViewController: UITableViewController
- @property (copy, nonatomic) NSArray *arrSampleName;
-
- - (instancetype)initWithSampleNameArray:(NSArray *)arrSampleName;
-
- @end
ViewController.m - # import "ViewController.h"
- # import "NSURLConnectionViewController.h"
- # import "NSURLConnectionDelegateViewController.h"
- # import "NSURLSessionViewController.h"
- # import "NSURLSessionDelegateViewController.h"
- # import "AFNetworkingViewController.h"
-
- @interface ViewController ()
- - ( void )layoutUI;
- @end
-
- @implementation ViewController
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - (instancetype)initWithSampleNameArray:(NSArray *)arrSampleName {
- if (self = [ super initWithStyle:UITableViewStyleGrouped]) {
- self.navigationItem.title = @ "Multiple ways to implement file download function" ;
- self.navigationItem.backBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@ "return" style:UIBarButtonItemStylePlain target:nil action:nil];
-
- _arrSampleName = arrSampleName;
- }
- return self;
- }
-
- - ( void )layoutUI {
- }
-
- #pragma mark - UITableViewController related method rewrite
- - (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
- return 0.1 ;
- }
-
- - (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
- return 1 ;
- }
-
- - (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
- return [_arrSampleName count];
- }
-
- - (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
- static NSString *cellIdentifier = @ "cell" ;
- UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
- if (!cell) {
- cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
- }
- cell.textLabel.text = _arrSampleName[indexPath.row];
- return cell;
- }
-
- - ( void )tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
- switch (indexPath.row) {
- case 0 : {
- NSURLConnectionViewController *connectionVC = [NSURLConnectionViewController new ];
- [self.navigationController pushViewController:connectionVC animated:YES];
- break ;
- }
- case 1 : {
- NSURLConnectionDelegateViewController *connectionDelegateVC = [NSURLConnectionDelegateViewController new ];
- [self.navigationController pushViewController:connectionDelegateVC animated:YES];
- break ;
- }
- case 2 : {
- NSURLSessionViewController *sessionVC = [NSURLSessionViewController new ];
- [self.navigationController pushViewController:sessionVC animated:YES];
- break ;
- }
- case 3 : {
- NSURLSessionDelegateViewController *sessionDelegateVC = [NSURLSessionDelegateViewController new ];
- [self.navigationController pushViewController:sessionDelegateVC animated:YES];
- break ;
- }
- case 4 : {
- AFNetworkingViewController *networkingVC = [AFNetworkingViewController new ];
- [self.navigationController pushViewController:networkingVC animated:YES];
- break ;
- }
- default :
- break ;
- }
- }
-
- @end
PrefixHeader.pch - #define kFileURLStr @ "http://files.cnblogs.com/files/huangjianwu/metro_demoUse Highcharts to implement chart display.zip"
-
- #define kTitleOfNSURLConnection @ "Use NSURLConnection directly"
- #define kTitleOfNSURLConnectionDelegate @ "Use NSURLConnection delegate method"
- #define kTitleOfNSURLSession @ "Use NSURLSession directly"
- #define kTitleOfNSURLSessionDelegate @ "Use NSURLSession delegate method"
- #define kTitleOfAFNetworking @ "How to use AFNetworking"
-
- #define kApplication [UIApplication sharedApplication]
UIButton+BeautifulButton.h - # import @interfaceUIButton (BeautifulButton)
-
-
-
-
-
- - ( void )beautifulButton:(UIColor *)tintColor;
-
- @end
UIButton+BeautifulButton.m - # import "UIButton+BeautifulButton.h"
-
- @implementationUIButton (BeautifulButton)
-
- - ( void )beautifulButton:(UIColor *)tintColor {
- self.tintColor = tintColor ?: [UIColor darkGrayColor];
- self.layer.masksToBounds = YES;
- self.layer.cornerRadius = 10.0 ;
- self.layer.borderColor = [UIColor grayColor].CGColor;
- self.layer.borderWidth = 1.0 ;
- }
-
- @end
NSURLConnectionViewController.h - # import @interface NSURLConnectionViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UILabel *lblFileName;
- @property (strong, nonatomic) IBOutlet UILabel *lblMessage;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFile;
-
- @end
NSURLConnectionViewController.m - # import "NSURLConnectionViewController.h"
- # import "UIButton+BeautifulButton.h"
-
- @interface NSURLConnectionViewController ()
- - ( void )layoutUI;
- - ( void )saveDataToDisk:(NSData *)data;
- @end
-
- @implementation NSURLConnectionViewController
-
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - ( void )layoutUI {
- self.navigationItem.title = kTitleOfNSURLConnection;
- self.view.backgroundColor = [UIColor colorWithWhite: 0.95 alpha: 1.000 ];
-
- [_btnDownloadFile beautifulButton:nil];
- }
-
- - ( void )saveDataToDisk:(NSData *)data {
-
- NSString *savePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
- savePath = [savePath stringByAppendingPathComponent:_lblFileName.text];
- [data writeToFile:savePath atomically:YES];
- }
-
- - (IBAction)downloadFile:(id)sender {
- _lblMessage.text = @ "Downloading..." ;
-
- NSString *fileURLStr = kFileURLStr;
-
- fileURLStr = [fileURLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *fileURL = [NSURL URLWithString:fileURLStr];
-
-
- NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:fileURL];
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- [NSURLConnection sendAsynchronousRequest:request
- queue:[NSOperationQueue mainQueue]
- completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) {
- if (!connectionError) {
- [self saveDataToDisk:data];
- NSLog(@ "Save successfully" );
-
- _lblMessage.text = @ "Download completed" ;
-
- } else {
- NSLog(@ "Download failed, error message: %@" , connectionError.localizedDescription);
-
- _lblMessage.text = @ "Download failed" ;
- }
- }];
- }
-
- @end
#p# NSURLConnectionViewController.xib - [?xml version= "1.0" encoding= "UTF-8" standalone= "no" ?]
- [document type= "com.apple.InterfaceBuilder3.CocoaTouch.XIB" version= "3.0" toolsVersion= "6211" systemVersion= "14A298i" targetRuntime= "iOS.CocoaTouch" propertyAccessControl= "none" useAutolayout= "YES" useTraitCollections= "YES" ]
- [dependencies]
- [plugIn identifier= "com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version= "6204" /]
- [/dependencies]
- [objects]
- [placeholder placeholderIdentifier= "IBFilesOwner" id= "-1" userLabel= "File's Owner" customClass= "NSURLConnectionViewController" ]
- [connections]
- [outlet property= "btnDownloadFile" destination= "mwt-p9-tRE" id= "ZVc-6S-ES3" /]
- [outlet property= "lblFileName" destination= "dlB-Qn-eOO" id= "NdS-9n-7KX" /]
- [outlet property= "lblMessage" destination= "qlQ-nM-BXU" id= "tRe-SR-AQE" /]
- [outlet property= "view" destination= "i5M-Pr-FkT" id= "sfx-zR-JGt" /]
- [/connections]
- [/placeholder]
- [placeholder placeholderIdentifier= "IBFirstResponder" id= "-2" customClass= "UIResponder" /]
- [view clearsContextBeforeDrawing= "NO" contentMode= "scaleToFill" id= "i5M-Pr-FkT" ]
- [rect key= "frame" x= "0.0" y= "0.0" width= "600" height= "600" /]
- [autoresizingMask key= "autoresizingMask" widthSizable= "YES" heightSizable= "YES" /]
- [subviews]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "metro_demo uses Highcharts to implement chart display.zip" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "dlB-Qn-eOO" ]
- [rect key= "frame" x= "145" y= "104" width= "309.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "boldSystem" pointSize= "15" /]
- [color key= "textColor" cocoaTouchSystemColor= "darkTextColor" /]
- [nil key= "highlightedColor" /]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "mwt-p9-tRE" ]
- [rect key= "frame" x= "250" y= "520" width= "100" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "100" id= "I5D-tA-ffH" /]
- [constraint firstAttribute= "height" constant= "40" id= "Y8C-D4-IVr" /]
- [/constraints]
- [state key= "normal" title= "Download" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFile:" destination= "-1" eventType= "touchUpInside" id= "MK4-Yk-IOk" /]
- [/connections]
- [/button]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "Label" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "qlQ-nM-BXU" ]
- [rect key= "frame" x= "145" y= "140" width= "37.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "system" pointSize= "15" /]
- [color key= "textColor" red= "0.0" green= "0.50196081399917603" blue= "1" alpha= "1" colorSpace= "calibratedRGB" /]
- [nil key= "highlightedColor" /]
- [userDefinedRuntimeAttributes]
- [userDefinedRuntimeAttribute type= "string" keyPath= "text" value= "" /]
- [/userDefinedRuntimeAttributes]
- [/label]
- [/subviews]
- [color key= "backgroundColor" white= "1" alpha= "1" colorSpace= "custom" customColorSpace= "calibratedWhite" /]
- [constraints]
- [constraint firstAttribute= "centerX" secondItem= "dlB-Qn-eOO" secondAttribute= "centerX" id= "gNK-NO-rth" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "104" id= "hwU-O2-Fed" /]
- [constraint firstAttribute= "centerX" secondItem= "mwt-p9-tRE" secondAttribute= "centerX" id= "teN-3t-8Gc" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "140" id= "w3g-ej-P18" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "leading" secondItem= "qlQ-nM-BXU" secondAttribute= "leading" constant= "0.5" id= "wMU-pU-z9f" /]
- [constraint firstAttribute= "bottom" secondItem= "mwt-p9-tRE" secondAttribute= "bottom" constant= "40" id= "yBq-He-Jv8" /]
- [/constraints]
- [/view]
- [/objects]
- [/document]
NSURLConnectionDelegateViewController.h - # import @interface NSURLConnectionDelegateViewController : UIViewController
- @property (strong, nonatomic) NSMutableData *mDataReceive;
- @property (assign, nonatomic) NSUInteger totalDataLength;
-
- @property (strong, nonatomic) IBOutlet UILabel *lblFileName;
- @property (strong, nonatomic) IBOutlet UIProgressView *progVDownloadFile;
- @property (strong, nonatomic) IBOutlet UILabel *lblMessage;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFile;
-
- @end
NSURLConnectionDelegateViewController.m - # import "NSURLConnectionDelegateViewController.h"
- # import "UIButton+BeautifulButton.h"
-
- @interface NSURLConnectionDelegateViewController ()
- - ( void )layoutUI;
- - (BOOL)isExistCacheInMemory:(NSURLRequest *)request;
- - ( void )updateProgress;
- @end
-
- @implementation NSURLConnectionDelegateViewController
-
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - ( void )layoutUI {
- self.navigationItem.title = kTitleOfNSURLConnectionDelegate;
- self.view.backgroundColor = [UIColor colorWithWhite: 0.95 alpha: 1.000 ];
-
- [_btnDownloadFile beautifulButton:nil];
- }
-
- - (BOOL)isExistCacheInMemory:(NSURLRequest *)request {
- BOOL isExistCache = NO;
- NSURLCache *cache = [NSURLCache sharedURLCache];
- [cache setMemoryCapacity: 1024 * 1024 ];
-
- NSCachedURLResponse *response = [cache cachedResponseForRequest:request];
- if (response != nil) {
- NSLog(@ "There is a response cache corresponding to the request in memory" );
- isExistCache = YES;
- }
- return isExistCache;
- }
-
- - ( void )updateProgress {
- NSUInteger receiveDataLength = _mDataReceive.length;
- if (receiveDataLength == _totalDataLength) {
- _lblMessage.text = @ "Download completed" ;
- kApplication.networkActivityIndicatorVisible = NO;
- } else {
- _lblMessage.text = @ "Downloading..." ;
- kApplication.networkActivityIndicatorVisible = YES;
- _progVDownloadFile.progress = ( float )receiveDataLength / _totalDataLength;
- }
- }
-
- - (IBAction)downloadFile:(id)sender {
-
-
-
-
-
-
-
-
- NSString *fileURLStr = kFileURLStr;
-
- fileURLStr = [fileURLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *fileURL = [NSURL URLWithString:fileURLStr];
-
-
-
-
-
-
-
-
-
-
-
- NSURLRequest *request = [[NSURLRequest alloc] initWithURL:fileURL
- cachePolicy:NSURLRequestUseProtocolCachePolicy
- timeoutInterval: 60.0 ];
- if ([self isExistCacheInMemory:request]) {
- request = [[NSURLRequest alloc] initWithURL:fileURL
- cachePolicy:NSURLRequestReturnCacheDataDontLoad
- timeoutInterval: 60.0 ];
- }
-
-
- NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:request
- delegate:self];
- [connection start];
- }
-
- #pragma mark -NSURLConnectionDataDelegate
- - (NSURLRequest *)connection:(NSURLConnection *)connection willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)response {
- NSLog(@ "The request is about to be sent" );
-
- return request;
- }
-
- - ( void )connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response {
- NSLog(@ "Response received" );
-
- _mDataReceive = [NSMutableData new ];
- _progVDownloadFile.progress = 0.0 ;
-
-
-
-
-
-
-
- NSDictionary *dicHeaderField = [(NSHTTPURLResponse *)response allHeaderFields];
- _totalDataLength = [[dicHeaderField objectForKey:@ "Content-Length" ] integerValue];
- }
-
- - ( void )connection:(NSURLConnection *)connection didReceiveData:(NSData *)data {
- NSLog(@ "Response data has been received, the data length is %lu bytes..." , (unsigned long )[data length]);
-
- [_mDataReceive appendData:data];
- [self updateProgress];
- }
-
- - ( void )connectionDidFinishLoading:(NSURLConnection *)connection {
- NSLog(@ "All response data has been received" );
-
- NSString *savePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
- savePath = [savePath stringByAppendingPathComponent:_lblFileName.text];
- [_mDataReceive writeToFile:savePath atomically:YES];
- }
-
- - ( void )connection:(NSURLConnection *)connection didFailWithError:(NSError *)error {
-
- NSLog(@ "Connection error, error message: %@" , error.localizedDescription);
-
- _lblMessage.text = @ "Connection error" ;
- }
-
- @end
NSURLConnectionDelegateViewController.xib - [?xml version= "1.0" encoding= "UTF-8" standalone= "no" ?]
- [document type= "com.apple.InterfaceBuilder3.CocoaTouch.XIB" version= "3.0" toolsVersion= "7706" systemVersion= "14E46" targetRuntime= "iOS.CocoaTouch" propertyAccessControl= "none" useAutolayout= "YES" useTraitCollections= "YES" ]
- [dependencies]
- [deployment identifier= "iOS" /]
- [plugIn identifier= "com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version= "7703" /]
- [/dependencies]
- [objects]
- [placeholder placeholderIdentifier= "IBFilesOwner" id= "-1" userLabel= "File's Owner" customClass= "NSURLConnectionDelegateViewController" ]
- [connections]
- [outlet property= "btnDownloadFile" destination= "mwt-p9-tRE" id= "ZVc-6S-ES3" /]
- [outlet property= "lblFileName" destination= "dlB-Qn-eOO" id= "vJk-jh-Y2c" /]
- [outlet property= "lblMessage" destination= "qlQ-nM-BXU" id= "tRe-SR-AQE" /]
- [outlet property= "progVDownloadFile" destination= "Me3-m2-iC4" id= "PtK-m7-j5N" /]
- [outlet property= "view" destination= "i5M-Pr-FkT" id= "sfx-zR-JGt" /]
- [/connections]
- [/placeholder]
- [placeholder placeholderIdentifier= "IBFirstResponder" id= "-2" customClass= "UIResponder" /]
- [view clearsContextBeforeDrawing= "NO" contentMode= "scaleToFill" id= "i5M-Pr-FkT" ]
- [rect key= "frame" x= "0.0" y= "0.0" width= "600" height= "600" /]
- [autoresizingMask key= "autoresizingMask" widthSizable= "YES" heightSizable= "YES" /]
- [subviews]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "metro_demo uses Highcharts to implement chart display.zip" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "dlB-Qn-eOO" ]
- [rect key= "frame" x= "145" y= "104" width= "309.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "boldSystem" pointSize= "15" /]
- [color key= "textColor" cocoaTouchSystemColor= "darkTextColor" /]
- [nil key= "highlightedColor" /]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "mwt-p9-tRE" ]
- [rect key= "frame" x= "250" y= "520" width= "100" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "100" id= "I5D-tA-ffH" /]
- [constraint firstAttribute= "height" constant= "40" id= "Y8C-D4-IVr" /]
- [/constraints]
- [state key= "normal" title= "Download" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFile:" destination= "-1" eventType= "touchUpInside" id= "iGc-6N-bsZ" /]
- [/connections]
- [/button]
- [progressView opaque= "NO" contentMode= "scaleToFill" verticalHuggingPriority= "750" translatesAutoresizingMaskIntoConstraints= "NO" id= "Me3-m2-iC4" ]
- [rect key= "frame" x= "145" y= "160" width= "310" height= "2" /]
- [constraints]
- [constraint firstAttribute= "height" constant= "2" id= "I50-Zx-DwT" /]
- [constraint firstAttribute= "width" constant= "310" id= "wdS-eD-Tkc" /]
- [/constraints]
- [/progressView]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "Label" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "qlQ-nM-BXU" ]
- [rect key= "frame" x= "145" y= "180" width= "37.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "system" pointSize= "15" /]
- [color key= "textColor" red= "0.0" green= "0.50196081399917603" blue= "1" alpha= "1" colorSpace= "calibratedRGB" /]
- [nil key= "highlightedColor" /]
- [userDefinedRuntimeAttributes]
- [userDefinedRuntimeAttribute type= "string" keyPath= "text" value= "" /]
- [/userDefinedRuntimeAttributes]
- [/label]
- [/subviews]
- [color key= "backgroundColor" white= "1" alpha= "1" colorSpace= "custom" customColorSpace= "calibratedWhite" /]
- [constraints]
- [constraint firstAttribute= "centerX" secondItem= "Me3-m2-iC4" secondAttribute= "centerX" id= "Ya8-bM-TaA" /]
- [constraint firstItem= "Me3-m2-iC4" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "160" id= "bOY-B5-is2" /]
- [constraint firstAttribute= "centerX" secondItem= "dlB-Qn-eOO" secondAttribute= "centerX" id= "gNK-NO-rth" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "104" id= "hwU-O2-Fed" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "leading" secondItem= "Me3-m2-iC4" secondAttribute= "leading" id= "lus-oi-9SA" /]
- [constraint firstAttribute= "centerX" secondItem= "mwt-p9-tRE" secondAttribute= "centerX" id= "teN-3t-8Gc" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "180" id= "w3g-ej-P18" /]
- [constraint firstAttribute= "bottom" secondItem= "mwt-p9-tRE" secondAttribute= "bottom" constant= "40" id= "yBq-He-Jv8" /]
- [/constraints]
- [/view]
- [/objects]
- [/document]
NSURLSessionViewController.h - # import @interface NSURLSessionViewController : UIViewController
- @property (strong, nonatomic) IBOutlet UILabel *lblFileName;
- @property (strong, nonatomic) IBOutlet UILabel *lblMessage;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFile;
-
- @end
NSURLSessionViewController.m - # import "NSURLSessionViewController.h"
- # import "UIButton+BeautifulButton.h"
-
- @interface NSURLSessionViewController ()
- - ( void )layoutUI;
- @end
-
- @implementation NSURLSessionViewController
-
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - ( void )layoutUI {
- self.navigationItem.title = kTitleOfNSURLSession;
- self.view.backgroundColor = [UIColor colorWithWhite: 0.95 alpha: 1.000 ];
-
- [_btnDownloadFile beautifulButton:nil];
- }
-
- - (IBAction)downloadFile:(id)sender {
- _lblMessage.text = @ "Downloading..." ;
-
- NSString *fileURLStr = kFileURLStr;
-
- fileURLStr = [fileURLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *fileURL = [NSURL URLWithString:fileURLStr];
-
-
- NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:fileURL];
-
-
- NSURLSession *session = [NSURLSession sharedSession];
-
-
- NSURLSessionDownloadTask *downloadTask = [session downloadTaskWithRequest:request completionHandler:^(NSURL *location, NSURLResponse *response, NSError *error) {
- __block void (^updateUI)();
-
- if (!error) {
- NSLog(@ "Temporary save path after downloading: %@" , location);
-
- NSString *savePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
- savePath = [savePath stringByAppendingPathComponent:_lblFileName.text];
- NSURL *saveURL = [NSURL fileURLWithPath:savePath];
- NSError *saveError;
- NSFileManager *fileManager = [NSFileManager defaultManager];
-
- if ([fileManager fileExistsAtPath:savePath]) {
- [fileManager removeItemAtPath:savePath error:&saveError];
- if (saveError) {
- NSLog(@ "Failed to remove the old target file, error message: %@" , saveError.localizedDescription);
-
- updateUI = ^ {
- _lblMessage.text = @ "Download failed" ;
- };
- }
- }
- if (!saveError) {
-
-
-
-
-
-
-
- [fileManager copyItemAtURL:location
- toURL:saveURL
- error:&saveError];
-
- if (!saveError) {
- NSLog(@ "Save successfully" );
-
- updateUI = ^ {
- _lblMessage.text = @ "Download completed" ;
- };
- } else {
- NSLog(@ "Save failed, error message: %@" , saveError.localizedDescription);
-
- updateUI = ^ {
- _lblMessage.text = @ "Download failed" ;
- };
- }
- }
-
- } else {
- NSLog(@ "Download failed, error message: %@" , error.localizedDescription);
-
- updateUI = ^ {
- _lblMessage.text = @ "Download failed" ;
- };
- }
-
- dispatch_async(dispatch_get_main_queue(), updateUI);
- }];
- [downloadTask resume];
- }
-
- @end
#p# NSURLSessionViewController.xib - [?xml version= "1.0" encoding= "UTF-8" standalone= "no" ?]
- [document type= "com.apple.InterfaceBuilder3.CocoaTouch.XIB" version= "3.0" toolsVersion= "7706" systemVersion= "14E46" targetRuntime= "iOS.CocoaTouch" propertyAccessControl= "none" useAutolayout= "YES" useTraitCollections= "YES" ]
- [dependencies]
- [deployment identifier= "iOS" /]
- [plugIn identifier= "com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version= "7703" /]
- [/dependencies]
- [objects]
- [placeholder placeholderIdentifier= "IBFilesOwner" id= "-1" userLabel= "File's Owner" customClass= "NSURLSessionViewController" ]
- [connections]
- [outlet property= "btnDownloadFile" destination= "mwt-p9-tRE" id= "ZVc-6S-ES3" /]
- [outlet property= "lblFileName" destination= "dlB-Qn-eOO" id= "NdS-9n-7KX" /]
- [outlet property= "lblMessage" destination= "qlQ-nM-BXU" id= "tRe-SR-AQE" /]
- [outlet property= "view" destination= "i5M-Pr-FkT" id= "sfx-zR-JGt" /]
- [/connections]
- [/placeholder]
- [placeholder placeholderIdentifier= "IBFirstResponder" id= "-2" customClass= "UIResponder" /]
- [view clearsContextBeforeDrawing= "NO" contentMode= "scaleToFill" id= "i5M-Pr-FkT" ]
- [rect key= "frame" x= "0.0" y= "0.0" width= "600" height= "600" /]
- [autoresizingMask key= "autoresizingMask" widthSizable= "YES" heightSizable= "YES" /]
- [subviews]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "metro_demo uses Highcharts to implement chart display.zip" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "dlB-Qn-eOO" ]
- [rect key= "frame" x= "145" y= "104" width= "309.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "boldSystem" pointSize= "15" /]
- [color key= "textColor" cocoaTouchSystemColor= "darkTextColor" /]
- [nil key= "highlightedColor" /]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "mwt-p9-tRE" ]
- [rect key= "frame" x= "250" y= "520" width= "100" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "100" id= "I5D-tA-ffH" /]
- [constraint firstAttribute= "height" constant= "40" id= "Y8C-D4-IVr" /]
- [/constraints]
- [state key= "normal" title= "Download" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFile:" destination= "-1" eventType= "touchUpInside" id= "MK4-Yk-IOk" /]
- [/connections]
- [/button]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "Label" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "qlQ-nM-BXU" ]
- [rect key= "frame" x= "145" y= "140" width= "37.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "system" pointSize= "15" /]
- [color key= "textColor" red= "0.0" green= "0.50196081399917603" blue= "1" alpha= "1" colorSpace= "calibratedRGB" /]
- [nil key= "highlightedColor" /]
- [userDefinedRuntimeAttributes]
- [userDefinedRuntimeAttribute type= "string" keyPath= "text" value= "" /]
- [/userDefinedRuntimeAttributes]
- [/label]
- [/subviews]
- [color key= "backgroundColor" white= "1" alpha= "1" colorSpace= "custom" customColorSpace= "calibratedWhite" /]
- [constraints]
- [constraint firstAttribute= "centerX" secondItem= "dlB-Qn-eOO" secondAttribute= "centerX" id= "gNK-NO-rth" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "104" id= "hwU-O2-Fed" /]
- [constraint firstAttribute= "centerX" secondItem= "mwt-p9-tRE" secondAttribute= "centerX" id= "teN-3t-8Gc" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "140" id= "w3g-ej-P18" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "leading" secondItem= "qlQ-nM-BXU" secondAttribute= "leading" constant= "0.5" id= "wMU-pU-z9f" /]
- [constraint firstAttribute= "bottom" secondItem= "mwt-p9-tRE" secondAttribute= "bottom" constant= "40" id= "yBq-He-Jv8" /]
- [/constraints]
- [/view]
- [/objects]
- [/document]
NSURLSessionDelegateViewController.h - # import @interface NSURLSessionDelegateViewController : UIViewController @property (strong, nonatomic) NSURLSessionDownloadTask *downloadTask;
-
- @property (strong, nonatomic) IBOutlet UILabel *lblFileName;
- @property (strong, nonatomic) IBOutlet UIProgressView *progVDownloadFile;
- @property (strong, nonatomic) IBOutlet UILabel *lblMessage;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFile;
- @property (strong, nonatomic) IBOutlet UIButton *btnCancel;
- @property (strong, nonatomic) IBOutlet UIButton *btnSuspend;
- @property (strong, nonatomic) IBOutlet UIButton *btnResume;
-
- @end
NSURLSessionDelegateViewController.m - # import "NSURLSessionDelegateViewController.h"
- # import "UIButton+BeautifulButton.h"
-
- @interface NSURLSessionDelegateViewController ()
- - ( void )layoutUI;
- - (NSURLSession *)defaultSession;
- - (NSURLSession *)backgroundSession;
- - ( void )updateProgress:(int64_t)receiveDataLength totalDataLength:(int64_t)totalDataLength;
- @end
-
- @implementation NSURLSessionDelegateViewController
-
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - ( void )layoutUI {
- self.navigationItem.title = kTitleOfNSURLSessionDelegate;
- self.view.backgroundColor = [UIColor colorWithWhite: 0.95 alpha: 1.000 ];
-
- [_btnDownloadFile beautifulButton:nil];
- [_btnCancel beautifulButton:[UIColor redColor]];
- [_btnSuspend beautifulButton:[UIColor purpleColor]];
- [_btnResume beautifulButton:[UIColor orangeColor]];
- }
-
- - (NSURLSession *)defaultSession {
-
-
-
-
-
-
-
-
- NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration defaultSessionConfiguration];
- sessionConfiguration.timeoutIntervalForRequest = 60.0 ;
- sessionConfiguration.allowsCellularAccess = YES;
- sessionConfiguration.HTTPMaximumConnectionsPerHost = 4 ;
-
-
- NSURLSession *session = [NSURLSession sessionWithConfiguration:sessionConfiguration
- delegate:self
- delegateQueue:nil];
- return session;
- }
-
- - (NSURLSession *)backgroundSession {
- static NSURLSession *session;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
-
- NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration backgroundSessionConfigurationWithIdentifier:@ "KMDownloadFile.NSURLSessionDelegateViewController" ];
- sessionConfiguration.timeoutIntervalForRequest = 60.0 ;
- sessionConfiguration.allowsCellularAccess = YES;
- sessionConfiguration.HTTPMaximumConnectionsPerHost = 4 ;
- sessionConfiguration.discretionary = YES;
-
-
- session = [NSURLSession sessionWithConfiguration:sessionConfiguration
- delegate:self
- delegateQueue:nil];
- });
- return session;
- }
-
- - ( void )updateProgress:(int64_t)receiveDataLength totalDataLength:(int64_t)totalDataLength; {
- dispatch_async(dispatch_get_main_queue(), ^{
- if (receiveDataLength == totalDataLength) {
- _lblMessage.text = @ "Download Completed" ;
- kApplication.networkActivityIndicatorVisible = NO;
- } else {
- _lblMessage.text = @ "Download..." ;
- kApplication.networkActivityIndicatorVisible = YES;
- _progVDownloadFile.progress = ( float )receiveDataLength / totalDataLength;
- }
- });
- }
-
- - (IBAction)downloadFile:(id)sender {
- NSString *fileURLStr = kFileURLStr;
-
- fileURLStr = [fileURLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *fileURL = [NSURL URLWithString:fileURLStr];
-
-
- NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:fileURL];
-
-
- NSURLSession *session = [self defaultSession];
-
-
- _downloadTask = [session downloadTaskWithRequest:request];
- [_downloadTask resume];
-
-
-
-
-
-
-
-
- }
-
- - (IBAction)cancel:(id)sender {
- [_downloadTask cancel];
- }
-
- - (IBAction)suspend:(id)sender {
- [_downloadTask suspend];
- kApplication.networkActivityIndicatorVisible = NO;
- }
-
- - (IBAction)resume:(id)sender {
- [_downloadTask resume];
- }
-
- #pragma mark - NSURLSessionDownloadDelegate
- - ( void )URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didWriteData:(int64_t)bytesWritten totalBytesWritten:(int64_t)totalBytesWritten totalBytesExpectedToWrite:(int64_t)totalBytesExpectedToWrite {
- NSLog(@ "Response data has been received, the data length is %lld bytes..." , totalBytesWritten);
-
- [self updateProgress:totalBytesWritten totalDataLength:totalBytesExpectedToWrite];
- }
-
- - ( void )URLSession:(NSURLSession *)session downloadTask:(NSURLSessionDownloadTask *)downloadTask didFinishDownloadingToURL:(NSURL *)location {
-
-
-
- NSLog(@ "All response data has been received, temporary save path after download: %@" , location);
-
- __block void (^updateUI)();
-
- NSString *savePath = [NSSearchPathForDirectoriesInDomains(NSCachesDirectory, NSUserDomainMask, YES) lastObject];
- savePath = [savePath stringByAppendingPathComponent:_lblFileName.text];
- NSURL *saveURL = [NSURL fileURLWithPath:savePath];
- NSError *saveError;
- NSFileManager *fileManager = [NSFileManager defaultManager];
-
- if ([fileManager fileExistsAtPath:savePath]) {
- [fileManager removeItemAtPath:savePath error:&saveError];
- if (saveError) {
- NSLog(@ "Failed to remove the old target file, error message: %@" , saveError.localizedDescription);
-
- updateUI = ^ {
- _lblMessage.text = @ "Download failed" ;
- };
- }
- }
- if (!saveError) {
-
-
-
-
-
-
-
- [fileManager copyItemAtURL:location
- toURL:saveURL
- error:&saveError];
-
- if (!saveError) {
- NSLog(@ "Save successfully" );
-
- updateUI = ^ {
- _lblMessage.text = @ "Download Completed" ;
- };
- } else {
- NSLog(@ "Save failed, error message: %@" , saveError.localizedDescription);
-
- updateUI = ^ {
- _lblMessage.text = @ "Download failed" ;
- };
- }
- }
-
- dispatch_async(dispatch_get_main_queue(), updateUI);
- }
-
- - ( void )URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didCompleteWithError:(NSError *)error {
- NSLog(@ "Whether the download is successful or failed, it will be executed once in the end" );
-
- if (error) {
- NSString *desc = error.localizedDescription;
- NSLog(@ "Download failed, error message: %@" , desc);
-
- dispatch_async(dispatch_get_main_queue(), ^{
- _lblMessage.text = [desc isEqualToString:@ "cancelled" ] ? @ "Download Cancel" : @ "Download failed" ;
- kApplication.networkActivityIndicatorVisible = NO;
- _progVDownloadFile.progress = 0.0 ;
- });
- }
- }
-
- @end
NSURLSessionDelegateViewController.xib - [?xml version= "1.0" encoding= "UTF-8" standalone= "no" ?]
- [document type= "com.apple.InterfaceBuilder3.CocoaTouch.XIB" version= "3.0" toolsVersion= "7706" systemVersion= "14E46" targetRuntime= "iOS.CocoaTouch" propertyAccessControl= "none" useAutolayout= "YES" useTraitCollections= "YES" ]
- [dependencies]
- [deployment identifier= "iOS" /]
- [plugIn identifier= "com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version= "7703" /]
- [/dependencies]
- [objects]
- [placeholder placeholderIdentifier= "IBFilesOwner" id= "-1" userLabel= "File's Owner" customClass= "NSURLSessionDelegateViewController" ]
- [connections]
- [outlet property= "btnCancel" destination= "yMY-kU-iKL" id= "QHP-ls-q8P" /]
- [outlet property= "btnDownloadFile" destination= "mwt-p9-tRE" id= "ZVc-6S-ES3" /]
- [outlet property= "btnResume" destination= "YSM-n6-UM4" id= "RyL-54-rFB" /]
- [outlet property= "btnSuspend" destination= "5kz-pB-9nK" id= "1Jj-zV-DXM" /]
- [outlet property= "lblFileName" destination= "dlB-Qn-eOO" id= "vJk-jh-Y2c" /]
- [outlet property= "lblMessage" destination= "qlQ-nM-BXU" id= "tRe-SR-AQE" /]
- [outlet property= "progVDownloadFile" destination= "Me3-m2-iC4" id= "PtK-m7-j5N" /]
- [outlet property= "view" destination= "i5M-Pr-FkT" id= "sfx-zR-JGt" /]
- [/connections]
- [/placeholder]
- [placeholder placeholderIdentifier= "IBFirstResponder" id= "-2" customClass= "UIResponder" /]
- [view clearsContextBeforeDrawing= "NO" contentMode= "scaleToFill" id= "i5M-Pr-FkT" ]
- [rect key= "frame" x= "0.0" y= "0.0" width= "600" height= "600" /]
- [autoresizingMask key= "autoresizingMask" widthSizable= "YES" heightSizable= "YES" /]
- [subviews]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "metro_demo使用Highcharts实现图表展示.zip" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "dlB-Qn-eOO" ]
- [rect key= "frame" x= "145" y= "104" width= "309.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "boldSystem" pointSize= "15" /]
- [color key= "textColor" cocoaTouchSystemColor= "darkTextColor" /]
- [nil key= "highlightedColor" /]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "mwt-p9-tRE" ]
- [rect key= "frame" x= "145" y= "520" width= "70" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "70" id= "I5D-tA-ffH" /]
- [constraint firstAttribute= "height" constant= "40" id= "Y8C-D4-IVr" /]
- [/constraints]
- [state key= "normal" title= "Download" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFile:" destination= "-1" eventType= "touchUpInside" id= "iGc-6N-bsZ" /]
- [/connections]
- [/button]
- [progressView opaque= "NO" contentMode= "scaleToFill" verticalHuggingPriority= "750" translatesAutoresizingMaskIntoConstraints= "NO" id= "Me3-m2-iC4" ]
- [rect key= "frame" x= "145" y= "160" width= "310" height= "2" /]
- [constraints]
- [constraint firstAttribute= "height" constant= "2" id= "I50-Zx-DwT" /]
- [constraint firstAttribute= "width" constant= "310" id= "wdS-eD-Tkc" /]
- [/constraints]
- [/progressView]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "Label" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "qlQ-nM-BXU" ]
- [rect key= "frame" x= "145" y= "180" width= "37.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "system" pointSize= "15" /]
- [color key= "textColor" red= "0.0" green= "0.50196081399917603" blue= "1" alpha= "1" colorSpace= "calibratedRGB" /]
- [nil key= "highlightedColor" /]
- [userDefinedRuntimeAttributes]
- [userDefinedRuntimeAttribute type= "string" keyPath= "text" value= "" /]
- [/userDefinedRuntimeAttributes]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "5kz-pB-9nK" ]
- [rect key= "frame" x= "305" y= "520" width= "70" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "70" id= "IOm-ve-DPG" /]
- [constraint firstAttribute= "height" constant= "40" id= "Kwn-EW-gDl" /]
- [/constraints]
- [state key= "normal" title= "hang" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "suspend:" destination= "-1" eventType= "touchUpInside" id= "O6j-t2-7Lv" /]
- [/connections]
- [/button]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "YSM-n6-UM4" ]
- [rect key= "frame" x= "385" y= "520" width= "70" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "70" id= "LhS-5f-cG4" /]
- [constraint firstAttribute= "height" constant= "40" id= "kzz-1h-4DP" /]
- [/constraints]
- [state key= "normal" title= "recover" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "resume:" destination= "-1" eventType= "touchUpInside" id= "ms9-R9-B9B" /]
- [/connections]
- [/button]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "yMY-kU-iKL" ]
- [rect key= "frame" x= "225" y= "520" width= "70" height= "40" /]
- [constraints]
- [constraint firstAttribute= "height" constant= "40" id= "S7b-Pl-qKI" /]
- [constraint firstAttribute= "width" constant= "70" id= "gY7-vp-PUz" /]
- [/constraints]
- [state key= "normal" title= "Cancel" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "cancel:" destination= "-1" eventType= "touchUpInside" id= "ITC-zg-bfP" /]
- [/connections]
- [/button]
- [/subviews]
- [color key= "backgroundColor" white= "1" alpha= "1" colorSpace= "custom" customColorSpace= "calibratedWhite" /]
- [constraints]
- [constraint firstItem= "5kz-pB-9nK" firstAttribute= "centerY" secondItem= "YSM-n6-UM4" secondAttribute= "centerY" id= "4zt-gy-k65" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "leading" secondItem= "mwt-p9-tRE" secondAttribute= "leading" id= "RYu-qM-O8P" /]
- [constraint firstAttribute= "centerX" secondItem= "Me3-m2-iC4" secondAttribute= "centerX" id= "Ya8-bM-TaA" /]
- [constraint firstItem= "Me3-m2-iC4" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "160" id= "bOY-B5-is2" /]
- [constraint firstItem= "yMY-kU-iKL" firstAttribute= "centerY" secondItem= "5kz-pB-9nK" secondAttribute= "centerY" id= "dBh-1A-sIk" /]
- [constraint firstItem= "YSM-n6-UM4" firstAttribute= "leading" secondItem= "5kz-pB-9nK" secondAttribute= "trailing" constant= "10" id= "fYW-Jv-ro2" /]
- [constraint firstAttribute= "centerX" secondItem= "dlB-Qn-eOO" secondAttribute= "centerX" id= "gNK-NO-rth" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "104" id= "hwU-O2-Fed" /]
- [constraint firstItem= "mwt-p9-tRE" firstAttribute= "centerY" secondItem= "yMY-kU-iKL" secondAttribute= "centerY" id= "lGv-fH-Fh7" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "leading" secondItem= "Me3-m2-iC4" secondAttribute= "leading" id= "lus-oi-9SA" /]
- [constraint firstItem= "5kz-pB-9nK" firstAttribute= "leading" secondItem= "yMY-kU-iKL" secondAttribute= "trailing" constant= "10" id= "oge-T7-1td" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "180" id= "w3g-ej-P18" /]
- [constraint firstItem= "yMY-kU-iKL" firstAttribute= "leading" secondItem= "mwt-p9-tRE" secondAttribute= "trailing" constant= "10" id= "xCX-1F-xOv" /]
- [constraint firstAttribute= "bottom" secondItem= "mwt-p9-tRE" secondAttribute= "bottom" constant= "40" id= "yBq-He-Jv8" /]
- [/constraints]
- [/view]
- [/objects]
- [/document]
#p# AFNetworkingViewController.h - # import # import "MBProgressHUD.h"
-
- @interface AFNetworkingViewController : UIViewController
- @property (strong, nonatomic) MBProgressHUD *hud;
-
- @property (strong, nonatomic) IBOutlet UILabel *lblFileName;
- @property (strong, nonatomic) IBOutlet UILabel *lblMessage;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFileByConnection;
- @property (strong, nonatomic) IBOutlet UIButton *btnDownloadFileBySession;
-
- @end
AFNetworkingViewController.m - # import "AFNetworkingViewController.h"
- # import "AFNetworking.h"
- # import "AFNetworkActivityIndicatorManager.h"
- # import "UIButton+BeautifulButton.h"
-
- @interface AFNetworkingViewController ()
- - ( void )showAlert:(NSString *)msg;
- - ( void )checkNetwork;
- - ( void )layoutUI;
- - (NSMutableURLRequest *)downloadRequest;
- - (NSURL *)saveURL:(NSURLResponse *)response deleteExistFile:(BOOL)deleteExistFile;
- - ( void )updateProgress:(int64_t)receiveDataLength totalDataLength:(int64_t)totalDataLength;
- @end
-
- @implementation AFNetworkingViewController
-
- - ( void )viewDidLoad {
- [ super viewDidLoad];
-
- [self layoutUI];
- }
-
- - ( void )didReceiveMemoryWarning {
- [ super didReceiveMemoryWarning];
-
- }
-
- - ( void )showAlert:(NSString *)msg {
- UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@ "Network Situation"
- message:msg
- delegate:self
- cancelButtonTitle:nil
- otherButtonTitles:@ "OK" , nil];
- [alert show];
- }
-
- - ( void )checkNetwork {
- NSURL *baseURL = [NSURL URLWithString:@ "http://www.baidu.com/" ];
- AFHTTPRequestOperationManager *manager = [[AFHTTPRequestOperationManager alloc] initWithBaseURL:baseURL];
-
- NSOperationQueue *operationQueue = manager.operationQueue;
- [manager.reachabilityManager setReachabilityStatusChangeBlock:^(AFNetworkReachabilityStatus status) {
- switch (status) {
- case AFNetworkReachabilityStatusReachableViaWiFi:
- [self showAlert:@ "Under Wi-Fi Network" ];
- [operationQueue setSuspended:NO];
- break ;
- case AFNetworkReachabilityStatusReachableViaWWAN:
- [self showAlert:@ "Under 2G/3G/4G cellular mobile network" ];
- [operationQueue setSuspended:YES];
- break ;
- case AFNetworkReachabilityStatusNotReachable:
- default :
- [self showAlert:@ "Net not connected" ];
- [operationQueue setSuspended:YES];
- break ;
- }
- }];
-
- [manager.reachabilityManager startMonitoring];
- }
-
- - ( void )layoutUI {
- self.navigationItem.title = kTitleOfAFNetworking;
- self.view.backgroundColor = [UIColor colorWithWhite: 0.95 alpha: 1.000 ];
-
-
-
-
- UIButton *btn = _btnDownloadFileByConnection ?: [UIButton new ];
- [btn beautifulButton:nil];
- [_btnDownloadFileBySession beautifulButton:[UIColor orangeColor]];
-
-
- _hud = [[MBProgressHUD alloc] initWithView:self.view];
- _hud.mode = MBProgressHUDModeDeterminate;
- _hud.labelText = @ "Download..." ;
- [_hud hide:YES];
- [self.view addSubview:_hud];
-
-
- [self checkNetwork];
-
-
- [AFNetworkActivityIndicatorManager sharedManager].enabled = YES;
- }
-
- - (NSMutableURLRequest *)downloadRequest {
- NSString *fileURLStr = kFileURLStr;
-
- fileURLStr = [fileURLStr stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
- NSURL *fileURL = [NSURL URLWithString:fileURLStr];
-
-
- NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:fileURL];
- return request;
- }
-
- - (NSURL *)saveURL:(NSURLResponse *)response deleteExistFile:(BOOL)deleteExistFile {
- NSString *fileName = response ? [response suggestedFilename] : _lblFileName.text;
-
-
-
-
-
-
-
- NSURL *saveURL = [[NSFileManager defaultManager] URLForDirectory:NSCachesDirectory inDomain:NSUserDomainMask appropriateForURL:nil create:NO error:nil];
- saveURL = [saveURL URLByAppendingPathComponent:fileName];
- NSString *savePath = [saveURL path];
-
- if (deleteExistFile) {
- NSError *saveError;
- NSFileManager *fileManager = [NSFileManager defaultManager];
-
- if ([fileManager fileExistsAtPath:savePath]) {
- [fileManager removeItemAtPath:savePath error:&saveError];
- if (saveError) {
- NSLog(@ "Failed to remove the old target file, error message: %@" , saveError.localizedDescription);
- }
- }
- }
-
- return saveURL;
- }
-
- - ( void )updateProgress:(int64_t)receiveDataLength totalDataLength:(int64_t)totalDataLength; {
- dispatch_async(dispatch_get_main_queue(), ^{
- _hud.progress = ( float )receiveDataLength / totalDataLength;
-
- if (receiveDataLength == totalDataLength) {
- _lblMessage.text = receiveDataLength < 0 ? @ "Download failed" : @ "Download completed" ;
-
- [_hud hide:YES];
- } else {
- _lblMessage.text = @ "Download..." ;
-
- [_hud show:YES];
- }
- });
- }
-
- - (IBAction)downloadFileByConnection:(id)sender {
-
- NSMutableURLRequest *request = [self downloadRequest];
-
-
- AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
- NSString *savePath = [[self saveURL:nil deleteExistFile:NO] path];
-
- [operation setDownloadProgressBlock:^(NSUInteger bytesRead, long long totalBytesRead, long long totalBytesExpectedToRead) {
- NSLog(@ "Response data has been received, the data length is %lld bytes..." , totalBytesRead);
-
- [self updateProgress:totalBytesRead totalDataLength:totalBytesExpectedToRead];
- }];
-
- [operation setCompletionBlockWithSuccess:^(AFHTTPRequestOperation *operation, id responseObject) {
- NSLog(@ "All response data has been received" );
-
- NSData *data = (NSData *)responseObject;
- [data writeToFile:savePath atomically:YES];
-
- [self updateProgress: 100 totalDataLength: 100 ];
- } failure:^(AFHTTPRequestOperation *operation, NSError *error) {
- NSLog(@ "Download failed, error message: %@" , error.localizedDescription);
-
- [self updateProgress:- 1 totalDataLength:- 1 ];
- }];
-
-
- [operation start];
- }
-
- - (IBAction)downloadFileBySession:(id)sender {
-
- NSMutableURLRequest *request = [self downloadRequest];
-
-
- NSURLSessionConfiguration *sessionConfiguration = [NSURLSessionConfiguration defaultSessionConfiguration];
- sessionConfiguration.timeoutIntervalForRequest = 60.0 ;
- sessionConfiguration.allowsCellularAccess = YES;
- sessionConfiguration.HTTPMaximumConnectionsPerHost = 4 ;
-
-
- AFURLSessionManager *sessionManager = [[AFURLSessionManager alloc] initWithSessionConfiguration:sessionConfiguration];
-
-
- NSURLSessionDownloadTask *task = [sessionManager
- downloadTaskWithRequest:request
- progress:nil
- destination:^ NSURL*(NSURL *targetPath, NSURLResponse *response) {
-
- NSLog(@ "temporary save path after download: %@" , targetPath);
- return [self saveURL:response deleteExistFile:YES];
- } completionHandler:^ (NSURLResponse *response, NSURL *filePath, NSError *error) {
- if (!error) {
- NSLog(@ "Save path after download: %@" , filePath);
-
- [self updateProgress: 100 totalDataLength: 100 ];
- } else {
- NSLog(@ "Download failed, error message: %@" , error.localizedDescription);
-
- [self updateProgress:- 1 totalDataLength:- 1 ];
- }
-
- [_hud hide:YES];
- }];
-
-
-
- [sessionManager setDownloadTaskDidWriteDataBlock:^ (NSURLSession *session, NSURLSessionDownloadTask *downloadTask, int64_t bytesWritten, int64_t totalBytesWritten, int64_t totalBytesExpectedToWrite) {
- NSLog(@ "Response data has been received, the data length is %lld bytes..." , totalBytesWritten);
-
- [self updateProgress:totalBytesWritten totalDataLength:totalBytesExpectedToWrite];
- }];
-
-
- [sessionManager setDownloadTaskDidFinishDownloadingBlock:^ NSURL*(NSURLSession *session, NSURLSessionDownloadTask *downloadTask, NSURL *location) {
- NSLog(@ "All response data has been received, temporary save path after download: %@" , location);
- return [self saveURL:nil deleteExistFile:YES];
- }];
-
- [task resume];
- }
-
- @end
AFNetworkingViewController.xib - [?xml version= "1.0" encoding= "UTF-8" standalone= "no" ?]
- [document type= "com.apple.InterfaceBuilder3.CocoaTouch.XIB" version= "3.0" toolsVersion= "7706" systemVersion= "14E46" targetRuntime= "iOS.CocoaTouch" propertyAccessControl= "none" useAutolayout= "YES" useTraitCollections= "YES" ]
- [dependencies]
- [deployment identifier= "iOS" /]
- [plugIn identifier= "com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version= "7703" /]
- [/dependencies]
- [objects]
- [placeholder placeholderIdentifier= "IBFilesOwner" id= "-1" userLabel= "File's Owner" customClass= "AFNetworkingViewController" ]
- [connections]
- [outlet property= "btnDownloadFileByConnection" destination= "IkH-un-SOz" id= "gDd-6X-uxU" /]
- [outlet property= "btnDownloadFileBySession" destination= "mwt-p9-tRE" id= "5Qk-Zm-V3w" /]
- [outlet property= "lblFileName" destination= "dlB-Qn-eOO" id= "NdS-9n-7KX" /]
- [outlet property= "lblMessage" destination= "qlQ-nM-BXU" id= "tRe-SR-AQE" /]
- [outlet property= "view" destination= "i5M-Pr-FkT" id= "sfx-zR-JGt" /]
- [/connections]
- [/placeholder]
- [placeholder placeholderIdentifier= "IBFirstResponder" id= "-2" customClass= "UIResponder" /]
- [view clearsContextBeforeDrawing= "NO" contentMode= "scaleToFill" id= "i5M-Pr-FkT" ]
- [rect key= "frame" x= "0.0" y= "0.0" width= "600" height= "600" /]
- [autoresizingMask key= "autoresizingMask" widthSizable= "YES" heightSizable= "YES" /]
- [subviews]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "metro_demo使用Highcharts实现图表展示.zip" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "dlB-Qn-eOO" ]
- [rect key= "frame" x= "145" y= "104" width= "309.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "boldSystem" pointSize= "15" /]
- [color key= "textColor" cocoaTouchSystemColor= "darkTextColor" /]
- [nil key= "highlightedColor" /]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "mwt-p9-tRE" ]
- [rect key= "frame" x= "175" y= "520" width= "250" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "250" id= "I5D-tA-ffH" /]
- [constraint firstAttribute= "height" constant= "40" id= "Y8C-D4-IVr" /]
- [/constraints]
- [state key= "normal" title= "Download based on NSURLSession" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFileBySession:" destination= "-1" eventType= "touchUpInside" id= "z6s-cq-dag" /]
- [/connections]
- [/button]
- [label opaque= "NO" userInteractionEnabled= "NO" contentMode= "left" horizontalHuggingPriority= "251" verticalHuggingPriority= "251" text= "Label" lineBreakMode= "tailTruncation" baselineAdjustment= "alignBaselines" adjustsFontSizeToFit= "NO" translatesAutoresizingMaskIntoConstraints= "NO" id= "qlQ-nM-BXU" ]
- [rect key= "frame" x= "145" y= "140" width= "37.5" height= "18" /]
- [fontDescription key= "fontDescription" type= "system" pointSize= "15" /]
- [color key= "textColor" red= "0.0" green= "0.50196081399917603" blue= "1" alpha= "1" colorSpace= "calibratedRGB" /]
- [nil key= "highlightedColor" /]
- [userDefinedRuntimeAttributes]
- [userDefinedRuntimeAttribute type= "string" keyPath= "text" value= "" /]
- [/userDefinedRuntimeAttributes]
- [/label]
- [button opaque= "NO" contentMode= "scaleToFill" contentHorizontalAlignment= "center" contentVerticalAlignment= "center" buttonType= "roundedRect" lineBreakMode= "middleTruncation" translatesAutoresizingMaskIntoConstraints= "NO" id= "IkH-un-SOz" ]
- [rect key= "frame" x= "174" y= "460" width= "250" height= "40" /]
- [constraints]
- [constraint firstAttribute= "width" constant= "250" id= "3a7-Og-iWa" /]
- [constraint firstAttribute= "height" constant= "40" id= "mc0-yK-hWE" /]
- [/constraints]
- [state key= "normal" title= "Download based on NSURLConnection" ]
- [color key= "titleShadowColor" white= "0.5" alpha= "1" colorSpace= "calibratedWhite" /]
- [/state]
- [connections]
- [action selector= "downloadFileByConnection:" destination= "-1" eventType= "touchUpInside" id= "1ko-jP-kCo" /]
- [/connections]
- [/button]
- [/subviews]
- [color key= "backgroundColor" white= "1" alpha= "1" colorSpace= "custom" customColorSpace= "calibratedWhite" /]
- [constraints]
- [constraint firstItem= "mwt-p9-tRE" firstAttribute= "top" secondItem= "IkH-un-SOz" secondAttribute= "bottom" constant= "20" id= "Sye-JW-gux" /]
- [constraint firstAttribute= "centerX" secondItem= "dlB-Qn-eOO" secondAttribute= "centerX" id= "gNK-NO-rth" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "104" id= "hwU-O2-Fed" /]
- [constraint firstAttribute= "centerX" secondItem= "IkH-un-SOz" secondAttribute= "centerX" constant= "1" id= "lF1-Yf-Axs" /]
- [constraint firstAttribute= "centerX" secondItem= "mwt-p9-tRE" secondAttribute= "centerX" id= "teN-3t-8Gc" /]
- [constraint firstItem= "qlQ-nM-BXU" firstAttribute= "top" secondItem= "i5M-Pr-FkT" secondAttribute= "top" constant= "140" id= "w3g-ej-P18" /]
- [constraint firstItem= "dlB-Qn-eOO" firstAttribute= "leading" secondItem= "qlQ-nM-BXU" secondAttribute= "leading" constant= "0.5" id= "wMU-pU-z9f" /]
- [constraint firstAttribute= "bottom" secondItem= "mwt-p9-tRE" secondAttribute= "bottom" constant= "40" id= "yBq-He-Jv8" /]
- [/constraints]
- [/view]
- [/objects]
- [/document]
-
- View Cod
AppDelegate.h - # import @interface AppDelegate : UIResponder @property (strong, nonatomic) UIWindow *window;
- @property (strong, nonatomic) UINavigationController *navigationController;
-
- @end
AppDelegate.m - # import "AppDelegate.h"
- # import "ViewController.h"
-
- @interface AppDelegate ()
-
- @end
-
- @implementation AppDelegate
-
-
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
- _window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- ViewController *viewController = [[ViewController alloc]
- initWithSampleNameArray:@[ kTitleOfNSURLConnection,
- kTitleOfNSURLConnectionDelegate,
- kTitleOfNSURLSession,
- kTitleOfNSURLSessionDelegate,
- kTitleOfAFNetworking]];
- _navigationController = [[UINavigationController alloc] initWithRootViewController:viewController];
- _window.rootViewController = _navigationController;
-
- [_window makeKeyAndVisible];
- return YES;
- }
-
- - ( void )applicationWillResignActive:(UIApplication *)application {
- }
-
- - ( void )applicationDidEnterBackground:(UIApplication *)application {
- }
-
- - ( void )applicationWillEnterForeground:(UIApplication *)application {
- }
-
- - ( void )applicationDidBecomeActive:(UIApplication *)application {
- }
-
- - ( void )applicationWillTerminate:(UIApplication *)application {
- }
-
- @end
|