dotar/vim/snippets/objc/forarray.snippet

8 lines
154 B
Plaintext
Raw Normal View History

2011-11-17 15:45:33 -06:00
unsigned int ${1:object}Count = [${2:array} count];
for (unsigned int index = 0; index < $1Count; index++)
{
${3:id} $1 = [$2 $1AtIndex:index];
${4}
}