Contents

Develop
2014.11.21 14:41

[ios] 비동기 블럭 코드 예제

Views 825 Comment 0
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
?

Shortcut

PrevPrev Article

NextNext Article

Larger Font Smaller Font Up Down Go comment Print
- (void)loadThumbnailImage:(void (^)())completionBlock {
    dispatch_queue_t fetchQ = dispatch_queue_create("ConfigureCell", NULL);
    dispatch_async(fetchQ, ^{
        NSURL *address = [NSURL URLWithString:self.smallPictureURl];
        UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:address]];
        dispatch_async(dispatch_get_main_queue(), ^{
            self.thumbnailImage = image;
            completionBlock();
        });
    });
}

?

List of Articles
No. Category Subject Author Date Views
261 Etc 영어의 12 시제 (The twelve tenses of English) hooni 2013.07.12 15699
260 Develop OGNL(Object Graph Navigation Language) hooni 2013.04.23 15727
259 System/OS 라우팅 경로 결정 영향 요소 ㅋㅋ file hooni 2013.04.23 15850
258 PPT [ppt] 웜 과제 진행사항(프레임워크 검증환경 구축) 보고 file hooni 2013.04.23 15895
257 System/OS [owasp] 10대 웹어플리케이션 보안 취약 file hooni 2013.04.23 15906
256 Etc 티스토리 테이블 html,css 구문 hooni 2013.11.03 15952
255 Etc 여기저기서 모은 VoIP(인터넷전화) 자료들~ file hooni 2013.04.23 15966
254 Etc [doc] 웜 프레임워크 검증환경 구축(작성중..) file hooni 2013.04.23 16013
253 Etc iOS 에서 쓸만한 오프라인 구글지도 찾기 hooni 2014.01.06 16035
252 Develop [c] 네트워크 정보 알아보기 file hooni 2013.04.23 16122
251 Etc [flash] 페이지 이동 (액션스크립트) file hooni 2013.04.23 16263
250 Develop [c++] p.58 연습문제 2번 hooni 2003.04.23 16296
Board Pagination Prev 1 ... 72 73 74 75 76 77 78 79 80 81 ... 98 Next
/ 98