成都网站建设设计

将想法与焦点和您一起共享

Plist文件读取

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

网站建设哪家好,找成都创新互联!专注于网页设计、网站建设、微信开发、微信小程序、集团企业网站建设等服务项目。为回馈新老客户创新互联还提供了宜君免费建站欢迎大家使用!

    NSString *errorDesc = nil; 

   NSPropertyListFormat format; 

   NSString *plistPath = [[NSBundlemainBundle]pathForResource:aFileName 

                                                          ofType:@"plist"]; 

   NSData *plistXML = [[NSFileManagerdefaultManager] 

                        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;

}


本文标题:Plist文件读取
标题来源:http://chengdu.cdxwcx.cn/article/jghecp.html