특정 코드를 비동기로 실행하고 싶다면 아래와 같이 작업하면 된다.~!
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{
무거운 작업~!
dispatch_async(dispatch_get_main_queue(), ^{
UI 작업하기
});
});
'Development > IOS & Mac' 카테고리의 다른 글
[Xcode] Xcode5에서 새롭게 추가된 image assets (0) | 2013.10.07 |
---|---|
[IOS] webView에서 소리가 안날때.. (0) | 2013.10.03 |
[IOS] UIView 점선 테두리 그리기 (0) | 2013.09.25 |
[IOS Library] 다양한 형태로 리스트를 출력하는 ICarousel (0) | 2013.09.25 |
[IOS] UIScrollView contentOffset 애니메이션 후 다른 작업하기 (0) | 2013.09.23 |