Initial commit.
This commit is contained in:
7
vim/snippets/objc/forarray.snippet
Executable file
7
vim/snippets/objc/forarray.snippet
Executable file
@@ -0,0 +1,7 @@
|
||||
unsigned int ${1:object}Count = [${2:array} count];
|
||||
|
||||
for (unsigned int index = 0; index < $1Count; index++)
|
||||
{
|
||||
${3:id} $1 = [$2 $1AtIndex:index];
|
||||
${4}
|
||||
}
|
||||
Reference in New Issue
Block a user