Short and useful Objective-C snippets?

前端 未结 9 1749
逝去的感伤
逝去的感伤 2021-01-30 07:27

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:49

    I also have the standard view lifecycle methods in my snippets (which get used daily):

    I use keyboard shortcut vwa for

    - (void) viewWillAppear:(BOOL)animated
    {
        [super viewWillAppear: animated];
    
    
    }
    

    vdl for viewDidLoad etc.

提交回复
热议问题