티스토리 뷰
간단한 예제만 남겨두도록 한다.
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
TAG
- Gradle
- intellij
- Kotlin
- SWIFT
- ios
- Java
- tomcat
- CentOS
- docker
- go
- android
- golang
- Xcode
- Codable
- github
- enum
- war
- git
- MySQL
- rxswift
- Windows
- nodejs
- Linux
- cocoapods
- windows10
- centos8
- ubuntu
- php
- Spring
- Python
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함