// [NSData dataWithContentsOfURL:[NSURL URLWithString:@"https://t1.daumcdn.net/cfile/tistory/16647B174B82CA3508"]];
// 위 방법 보다 아래의 방법이 더 빠름!
NSMutableURLRequest *requestWithBodyParams = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"https://t1.daumcdn.net/cfile/tistory/16647B174B82CA3508"]];
NSData *imageData = [NSURLConnection sendSynchronousRequest:requestWithBodyParams returningResponse:nil error:nil];
UIImage *image = [UIImage imageWithData:imageData];
출처 : http://lambert.tistory.com/283
'프로그래밍 > iOS' 카테고리의 다른 글
터칭 아이폰 sdk 3.0 목차 (0) | 2011.05.21 |
---|---|
UITableView (0) | 2011.05.21 |
How to get root(key) window - 최상위 윈도우 알아내기 (0) | 2011.05.21 |
아이폰 개발 소스모음 (0) | 2011.05.21 |
iphone에서 http 사용하기 (get/post) - 소스코드는 퍼왔습니다. (0) | 2011.05.21 |