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
%lliisn’t a valid String Format SpecifierSupported String Format Specifiers with
stringWithFormathttp://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/Strings/Articles/formatSpecifiers.html#//apple_ref/doc/uid/TP40004265-SW1