I get few warnings in this Xcode 5.1 beta 5 when i installed this new Xcode.
Values of type NSInteger
should not be used as format arguments; add an explicit cast to long
instead
NSString *time; NSInteger hour; time = [@"" stringByAppendingString:[NSString stringWithFormat:@"%d",hour]];
and tells me to replace it with @"%02ld"
or @"%ld"
time = [time stringByAppendingString:[NSString stringWithFormat:@"%02ld",(long)minute]];
It was working fine when i was using Xcode 5.0.2.
so can we release app through Xcode 5.1 beta 5 to IOS 7.1 beta,7.1,6.1 to test on device & to App store?
Should i use Xcode 5.0.2 & use final(non beta) & wait for final version of Xcode 5.1.
P.S. I want to test my apps on device first time & will publish app on store first time..