Not a Duplicate of but the warning message is the same. I read this article and it didn't help.
performSelector may cause a leak because its selector is unknown
I am NOT using performSelector but I am getting the same warning as if I were.
The warning message in Xcode 6.3 is
PerformSelector may cause a leak because its selector is unknown
The code is
NSString *string=[NSString stringWithFormat:@"%tu", data.length];
NSLog(@" Expected :%lli",[response expectedContentLength]);
data.length should return an NSUInteger
expectedContentLength is a long long
When I change %tu to %zu, I get a new warning message
Values of type 'NSUInteger' should not be used as format arguments; add an explicit cast to 'unsigned long' instead