Possible Duplicate:
Calling NSLog from C++: “Format string is not a string literal (potentially insecure)”
Why is my string potentially unsecure in my iOS application?
I have this code to log the number of elements in my NSMutableDictionary called "myDictionary" in objective-c.
NSLog([NSString stringWithFormat:@"%d", [myDictionary count]]);
XCode warns me that "Format string is not a string literal. Potentially insecure."
Why? Aren't I using a secure formatted string as opposed to directly casting the count?