I have a an NSInteger in my application called score and i want to show the score integer in a UILabel. I Tried the formatWithObject method but for some reason it did't work.
ScoreLabel.text = [NSString formatWithObject
"%d", (int) score];
Any help is appreciated.
ScoreLabel.text = [NSString formatWithObject
Any help is appreciated.