大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
+ (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;
}