티스토리 뷰

Mobile/iOS

[iOS]NSMutableURLRequest 사용

out of coding 2016. 3. 9. 16:06

간단한 예제만 남겨두도록 한다.


    NSURL* url = [[NSURL alloc] initWithString:@"http://www.naver.com"];

    NSMutableURLRequest* request = [NSMutableURLRequest requestWithURL:url cachePolicy:NSURLRequestUseProtocolCachePolicy timeoutInterval:1.0];

    [request setHTTPMethod:@"GET"];

    

    NSError* error = nil;

    NSData* data = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];

    if(data == NULL) {

        NSLog(@"error");

    } else {

        NSString* requestString = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding];

        NSLog(@"data = %@", requestString);

    }

'Mobile > iOS' 카테고리의 다른 글

[iOS]Deprecation Warning 없애기  (0) 2016.03.10
[iOS]Storyboard 호출하기  (0) 2016.03.10
[iOS]NSTimer  (0) 2016.03.09
[iOS]UIWebViewDelegate의 이용  (0) 2016.03.09
[iOS]NetworkStatus 체크  (0) 2016.03.09
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/01   »
1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31
글 보관함