Table of Contents
Previous Section
NSString *string1, *string2;
// WRONG!
if (aString1 == aString2) ...
// Right
if ([aString1 isEqualToString:string2]) ...
i = 0;For more information, see the chapter "The WebScript Language".
if (i++ < 1 )
// This code never gets executed.
Table of Contents
Next Section