-
Notifications
You must be signed in to change notification settings - Fork 3
Objc: Conditionals
Alfie Hanssen edited this page Nov 21, 2013
·
3 revisions
int main(int argc, char * argv[])
{
@autoreleasepool {
// ...
BOOL hasPrettyLongName = NO;
if ([name length] > 10) {
hasPrettyLongName = YES;
} else {
hasPrettyLongName = NO;
}
NSLog(@"Is my name pretty long? %i (%i characters)", hasPrettyLongName, [name length]);
// UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}
2013-11-17 14:41:37.519 ObjcBasics[13163:a0b] Is my name pretty long? 0 (5 characters)