Plist文件讀取

+ (NSDictionary *)readFromArchive:(NSString *)aFileName {

    NSString *errorDesc = nil

    NSPropertyListFormat format; 

    NSString *plistPath = [[NSBundle mainBundle] pathForResource:aFileName 

                                                          ofType:@"plist"]; 

    NSData *plistXML = [[NSFileManager defaultManager

                        contentsAtPath:plistPath]; 

    NSDictionary *temp = (NSDictionary *)[NSPropertyListSerialization 

                                          propertyListFromData:plistXML 

                                          mutabilityOption:NSPropertyListMutableContainersAndLeaves 

                                          format:&format errorDescription:&errorDesc]; 

    if (!temp) { 

        NSLog(@"%s at line %d with message: %@", __FUNCTION__, __LINE__, errorDesc); 

    }

    

    return temp;

}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章