Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I use the following code to display label value from a plist with an array of dictionaries:

seventyfiveclLabel.text = [NSString stringWithFormat:@"Kr. %@",[selectedObject valueForKey:@"75 cl price"]];

Can I display the label if the key exists in the reprecented dictionary, and leave it blank if the key doesn't exist (or maybe if i does exist but has the value 0?)? Or leave it blank if i does, exist but has a specific value (0)? I ask because I have 100 wines (dictionaries) in the plist, some of them come in 75 cl and some of them doesn't.

share|improve this question

1 Answer

up vote 0 down vote accepted

The way I usually go about something like this would be to do something like the following:

NSString *myString = @"";
if ([myDict valueForKey:@"someKey"] != nil) {
    myString = [NSString stringWithFormat:@"Kr. %@", [myDict valueForKey:@"someKey"]];
}
myLabel.text = myString;

This way, if the key doesn't exist, it defaults to a blank string. If the key does indeed have a value, it inserts that instead. I hope this helps

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.