POST
NSURL * tempUrl = [NSURL URLWithString:@"http://your.homepage.com/test.php"];
NSString * body = [NSString stringWithFormat:@"id=%@&code=%@", @"abc", @"123"];
NSURLRequest * requestWeb = [[NSURLRequest alloc] initWithURL:tempUrl];
[requestWeb setHTTPMethod:@"POST"];
[requestWeb setHTTPBody:[body dataUsingEncoding:NSUTF8StringEncoding]];
UIWebView * webView = [[UIWebView alloc] init];
[webView loadRequest:requestWeb];
'iPhone Dev' 카테고리의 다른 글
테이블뷰 헤더 폰트정보 (0) | 2012.10.05 |
---|---|
컴파일시 ARC적용 안되게 하기 (0) | 2012.10.05 |
스크린샷 (0) | 2012.10.05 |
빈프로젝트 뷰 연결 (0) | 2012.10.05 |
블럭 안 실행 딜레이현상 (0) | 2012.10.05 |