作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两个 plist。如何从两个 plist 中添加 NSMutableDictionary 中的信息?我知道如何从 plist 做到这一点。但是我有 2 个 plist。
NSString *path = [[NSBundle mainBundle] pathForResource:
@"Eur" ofType:@"plist"];
NSString *path1 = [[NSBundle mainBundle] pathForResource:
@"Asia" ofType:@"plist"];
stationDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
我需要在 stationDictionary 中添加两个 plist:1 Eur 2 Asia。但是我不知道如何从第二个 plist 添加信息?
谢谢!
最佳答案
NSString *path = [[NSBundle mainBundle] pathForResource:
@"Eur" ofType:@"plist"];
NSString *path1 = [[NSBundle mainBundle] pathForResource:
@"Asia" ofType:@"plist"];
NSMutableDictionary* stationDictionary = [[NSMutableDictionary alloc] initWithContentsOfFile:path];
NSDictionary* dicForPath1 = [[NSDictionary alloc] initWithContentsOfFile:path1];
[stationDictionary addEntriesFromDictionary:dicForPath1];
关于ios - 如何从两个 plist 中添加 NSMutableDictionary 中的信息?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15848419/
我是一名优秀的程序员,十分优秀!