Reputation: 47
Hi i am trying to set a UILabeltext with the remaining KB Left from a NSURLConnection Download.
NSString *left = (@"Remaining: %lli KB", (exceptedBytes-resourceLength)/1024);
[kbeleft setText:left];
But it does not work. But when i am trying to use NSLog with
NSLog(@"Remaining: %lli KB", (exceptedBytes-resourceLength)/1024);
it works without any problems
what i am doing wrong?
kind regards
Upvotes: 1
Views: 531
Reputation: 36627
%lli
isn't a valid String Format Specifier
Supported String Format Specifiers with stringWithFormat
Upvotes: 2