iOS.訪問 Web Service.MKNetworkKit_GET

來源:互聯網
上載者:User

標籤:des   style   blog   color   strong   資料   

#import <UIKit/UIKit.h>#import "T20140628025200NSNumber+Message.h"#import "T20140628025200NSString+URLEncoding.h"#import "MKNetworkEngine.h"#import "MKNetworkOperation.h"@interface T20140628025200ViewController : UITableViewController@property (nonatomic,strong) NSMutableArray *listData;//接收從伺服器返回資料。@property (strong,nonatomic) NSMutableData *datas;// 查詢所有-(void)findAll;@end
#import "T20140628025200ViewController.h"@interface T20140628025200ViewController ()@end@implementation T20140628025200ViewController- (void)viewDidLoad{    [super viewDidLoad];        // 1、初始化資料    [self findAll];}- (void)didReceiveMemoryWarning{    [super didReceiveMemoryWarning];}#pragma mark table dataSource- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{    return self.listData.count;}- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{    // 1、初始化重用Cell    static NSString *reUseCell = @"reUseCell";    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:reUseCell];    if (cell == nil) {        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:reUseCell];    }        // 2、配置重用Cell資料    NSMutableDictionary*  dict = self.listData[indexPath.row];    cell.textLabel.text = [dict objectForKey:@"Content"];    cell.detailTextLabel.text = [dict objectForKey:@"CDate"];    return cell;}-(void)findAll{       NSString *path = [[NSString alloc] initWithFormat:@"/kujizu/test01.html"];        MKNetworkEngine *engine = [[MKNetworkEngine alloc] initWithHostName:@"127.0.0.1:8080" customHeaderFields:nil];    MKNetworkOperation *op = [engine operationWithPath:path];            [op addCompletionHandler:^(MKNetworkOperation *operation) {                NSLog(@"responseData : %@", [operation responseString]);        NSData *data  = [operation responseData];        NSDictionary *resDict = [NSJSONSerialization JSONObjectWithData:data options:NSJSONReadingAllowFragments error:nil];        if (data == nil) {                        self.listData = [[NSMutableArray alloc] init];            UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"錯誤資訊" message:@"沒有資料。" delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];            [alertView show];        }else{                        NSNumber *resultCodeObj = [resDict objectForKey:@"ResultCode"];            if ([resultCodeObj integerValue] >=0){                                self.listData = [resDict objectForKey:@"Record"];                [self.tableView reloadData];            } else {                                NSString *errorStr = [resultCodeObj errorMessage];                UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"錯誤資訊" message:errorStr delegate:nil cancelButtonTitle:@"OK" otherButtonTitles: nil];                [alertView show];            }        }            } errorHandler:^(MKNetworkOperation *errorOp, NSError* err) {        NSLog(@"MKNetwork請求錯誤 : %@", [err localizedDescription]);    }];    [engine enqueueOperation:op];}@end

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.