본문 바로가기

Development/IOS & Mac

[IOS] 특정 코드 비동기로 실행시키기

특정 코드를 비동기로 실행하고 싶다면 아래와 같이 작업하면 된다.~!


dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

무거운 작업~!

dispatch_async(dispatch_get_main_queue(), ^{

UI 작업하기

});

});