Short and useful Objective-C snippets?

前端 未结 9 885
慢半拍i
慢半拍i 2021-01-30 07:17

Since XCode 4, there is now a Code Snippets section which offers the snippets via auto-complete when typing. I\'d be very interested in snippets you all have stored in there. Wh

9条回答
  •  粉色の甜心
    2021-01-30 07:54

    Dispatch block on the current queue after given number of seconds:

    dispatch_after(dispatch_time(DISPATCH_TIME_NOW, <#seconds#>*1e9),
        dispatch_get_current_queue(), <#block#>);
    

提交回复
热议问题