[IOS] - IOS 외부 이미지 불러오기, URL Image
IOS ( Object-C ) 2014. 7. 18. 08:49반응형
NSString *attach = @"http://mrkn.tistory.com";
NSURL *url = [NSURL URLWithString:attach];
NSData *imageFile = [NSData dataWithContentsOfURL:url];
UIImage *image = [UIImage imageWithData:imageFile];
CGSize imageSize = image.size;
NSLog(@" Image Size : Width = %f Height = %f", imageSize.width, imageSize.height);
반응형
'IOS ( Object-C )' 카테고리의 다른 글
[IOS] - IOS UIImage to NSData 이미지 Data 값으로 변경 (0) | 2014.07.21 |
---|---|
[IOS] - IOS UIView fadeOut & fadeIn, UIView animation (0) | 2014.07.18 |
[IOS / Object-C] - IOS HTTP 네트워크 통신 (0) | 2014.07.16 |
[IOS] - IOS System Version 정보 구하기, IOS 버전 구하기 (0) | 2014.07.11 |
[IOS] - IOS UIAlertView 버튼 이벤트 (0) | 2014.07.08 |