I'm a noob to iphone development (2nd day using xcode) and I am having trouble making a dynamic text for a label. My string:
dealerspremiumLabel.text= [NSString stringWithFormat:@"%d%% (%@%d)", premiumPercentage, symbol, premiumCurrency];
is returning as "0% ((null)88988)" instead of "0% ($00.00)". I can't figure out why this is happening because in ViewDidLoad I set my variables as:
premiumPercentage=0;
premiumCurrency= 00.00;
symbol=@"$";
dealerspremiumLabel.text= [NSString stringWithFormat:@"%d%% (%@%d)", premiumPercentage, symbol, premiumCurrency];
My label outlet is properly set and my variables are setup properly as well. I also have checked my Log and the values for these particular variables are set correctly before the above code. Any help figuring this out is greatly appreciated.
symbolis useless, just put the$directly into your format definition:%d% ($%d). Otherwise try%sinstead of%@. – Madbreaks Jan 23 at 19:36