noodles / CodeSnippets

Code Snippets for XCode 4

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some code snippets for Xcode 4 that I find useful.

Based on Kendall Helmstetter Gelner's example on StackOverflow.

  1. MyTest - original example from StackOverflow. Type "nurse" and you will get "NSLog(@"Hello Nurse %@", <#Thing#>);"
  2. NSLog - based on the original NSLog macro from older versions of XCode (log control+.). Type l and you will get NSLog(@"<#Comment#>");
  3. VarLog - Just an NSLog statement that lets you echo a variable and specify the name & type also. NSLog(@"<#Variable Name#>: %<#Variable Type#>", <#Variable#>);

About

Code Snippets for XCode 4