How do I specify to only display the "Value" of my plist - Right now the whole path loads in my UITe
Posted
by JoshD
on Stack Overflow
See other posts from Stack Overflow
or by JoshD
Published on 2010-03-18T16:04:15Z
Indexed on
2010/03/18
16:51 UTC
Read the original article
Hit count: 116
showDescriptionPath is being passed from the previous Tableview. The text shows up, but the entire path prints in the UITextField instead of just the value of "Description" in my plist.
NSString *DescriptionPath = [[NSBundle mainBundle] bundlePath];
NSString *DescriptionInfoPath = [DescriptionPath stringByAppendingPathComponent:showDescriptionInfo];
showDescription.text = [[NSString alloc] initWithFormat:@"%@",DescriptionInfoPath];
© Stack Overflow or respective owner