Mac OS,读取plist文件的方法

 

//获取plist文件的路径 

NSString *plistPath = [[NSBundle mainBundle] pathForResource:@"文件名" ofType:@"plist"];   

    

//读取到一个NSDictionary   

NSDictionary *dictionary = [[NSDictionary alloc] initWithContentsOfFile:plistPath];   

 

//也可以读取到一个NSArray   

NSArray *array = [[NSArray alloc] initWithContentsOfFile:plistPath];  

你可能感兴趣的:(Mac OS,读取plist文件的方法)