일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 맑은세탁빨래방
- 오늘의 추천어플
- 유리의성
- [JunK의 모바일게임 소개]
- 돈사촌 노형점
- 제주 흑돼지 맛집
- 명품가방세탁
- 우도물꼬해녀의집
- WebView
- 제주흑돈세상수라간
- 대형카페트세탁
- 제주 산방산 맛집
- 아이폰
- 맑은슈즈워시
- 독개물항
- 추천게임
- 제주 한성식당
- 해적잠수함
- 명품화세탁
- 황금고팡
- 모바일게임
- 산지물식당 신제주 연동점
- 추천어플
- 예수그리스도
- 돈향기
- 낚시
- 보리빵마을
- 컴투스
- 제주가죽부츠세탁
- 만복흑돼지
- Today
- Total
일상+
Xcode 비동기 방식 본문
dispatch_queue_t queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_HIGH, 0ul);
dispatch_async(queue, ^(void){
NSString *imagePath =[NSString stringWithFormat:POI_THUMBNAIL_IMAGE_PATH, pois.photoId];
NSURL * imageURL = [NSURL URLWithString:imagePath];
NSData * imageData = [NSData dataWithContentsOfURL:imageURL];
UIImage * image = [UIImage imageWithData:imageData scale:4];
dispatch_async(dispatch_get_main_queue(), ^(void){
//비동기로 셀이 호출 되므로 해당 셀에만 이미지 작업이 되도록 설정
if(cell.tag == indexPath.row) {
float cellImageY = (cell.bounds.size.height - image.size.height) / 2;
float cellImageX = cellImageY - 10;
UIImageView *thumbImage = [[UIImageView alloc]initWithFrame:CGRectMake(cellImageX, cellImageY, image.size.width, image.size.height)];
thumbImage.image = image;
[cell addSubview:thumbImage];
}
});
});