网络请求 Error Domain=NSURLErrorDomain Code=-999

failure:^(id error) {

        [self hideLoadingHUD];

        

        if([error code] == NSURLErrorCancelled){

            return ;

        }

        

        if([error isKindOfClass:[NSString class]]){

            

            [self showNoNetInfoHUDWithMsg:error hideAfter:3.0];

            

        }else{

            

            [self showErrorInfoHUDWithMsg:@"网络连接错误!" hideAfter:3.0];

            

        }

    }];

posted @ 2016-08-24 17:30  YuFly  阅读(4594)  评论(0)    收藏  举报