plist in Xcode creation
问题 When I am creating a simple application for plist shown in below link: http://iosdevelopertips.com/data-file-management/reading-a-plist-into-an-nsarray.html When I am debugging it.. I am getting path of my plist file. But when I am using the following statement // Build the array from the plist NSMutableArray *array2 = [[NSMutableArray alloc] initWithContentsOfFile:path]; I don't get any value in array2... What could be the problem? 回答1: Here is the final solution that i got for plist....