Okay. I have *no* idea on how to use obj-c (code-wise). I only know my VB so could someone please translate from the following code into obj-c so I can just get a taste?
The "-"'s are the indentations cos this can't recognise space's it seems.
dim a, b, c as integer
dim foo as string
for a = 1 to 26
--for b = 1 to 26
----for c = 1 to 26
------foo = chr(a+96) & chr(b+96) & chr(c+96)
------listBox.additem foo
----next c
--next b
next a
The "-"'s are the indentations cos this can't recognise space's it seems.