June 2011
Beginner
552 pages
12h 34m
English
A fundamental feature of any programming language is its capability to make decisions. Decisions were made when executing the looping statements to determine when to terminate a loop. The Objective-C programming language also provides several other decision-making constructs, which are covered in this chapter:
if StatementThe Objective-C programming language provides a general decision-making capability in the form of a language construct known as the if statement. The general format of this statement is shown here:
if ( expression ) program statement
Imagine that you could translate a statement such as “If it is not raining, then I will go ...
Read now
Unlock full access