Last week we wrapped up our look at the different ways to construct loops in Objective-C. Here's a quick overview of the posts.
There are four looping statements in Objective-C:
for
for...in
while
do...while
The for loop is the most flexible; we looked at some for loop idioms.
We examined the two loop flow modifiers:
break
continue
Finally we wrapped up with a look at goto and examined common uses of goto.
goto
Today, we start a new topic: variables.