No format security warnings in Xcode 4.4
问题 I don't get any format security warnings ( -Wformat-security ) from this code using Xcode 4.4: #import <Foundation/Foundation.h> int main(int argc, const char * argv[]) { @autoreleasepool { // a = @"%@" or a = @"%@%@" NSString *a = [@"%@" stringByAppendingFormat:@"%@", arc4random_uniform(2)? @"%@": @"", nil]; // 50% change of crash, but no warning NSLog(a, @"Hello, World!"); } return 0; } Is this normal or have I somehow disabled this warning in Xcode? I have just created the project with