One off errors with NSLog and NSString stringWithFormat
- by David Liu
Does anyone know why there would be one-off errors with NSLog and NSString? It works fine in 99% of my program, but for some reason this error appears in one of my model's description method:
Example code:
localFileId = 7;
type = 2;
localId = 5;
NSLog(@"CachedFile localId=%d, 2=%d, localFileId=%d, type=%d, path=%@", localId, 2, localFileId, type, self.path);
Example Result:
CachedFile localId=5, 2=0, localFileId=2, type=7, path=(null)
Notice the "0" that gets inserted in there, where it should be "2=2". This happens with NSString stringWithFormat as well.