iOS 网络编程 GET 与 POST
// // ViewController.m // NetWork 1 // // Created by Lenny on 3/21/15. // Copyright (c) 2015 Lenny. All rights reserved. // #import "ViewController.h" #import "MBProgressHUD+MJ.h" @interface ViewController ()<</span>NSURLConnectionDataDelegate> @property (weak, nonatomic) IBOutlet UITextField *nameField; @property (weak, nonatomic) IBOutlet UITextField *pwdField; - (IBAction)loginBtnClick; @property(nonatomic,strong)NSMutableData * responseData; @end @implementation ViewController - (void)viewDidLoad { [super viewDidLoad]; } - (IBAction)loginBtnClick { NSString *username = self.nameField.text;