• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

iphone - 如何将 plist 数据读入数据模型?

[复制链接]
菜鸟教程小白 发表于 2022-12-12 17:33:01 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我通过在我的数据模型中硬编码一些静态数据(酒店信息)来启动我的应用程序,以便在我的应用程序的任何地方都可以访问它们。这很好,直到列表开始增长(仍然是静态数据)。我试图弄清楚如何通过使用 plist 来重新创建硬编码数据。似乎直截了当,但似乎无法弄清楚。

我的“酒店”对象标题:

@interface Hotel : NSObject {}

@property (nonatomic, assign) int HotelID;
@property (nonatomic, copy) NSString* Name;
@property (nonatomic, copy) int Capacity;

@end

我的“酒店”对象实现:

@implementation Hotel

@synthesize HotelID, Name, Capacity;

-(void)dealloc {
    [Name release];
    [Capacity release];
}

“Hotel”对象由我的 DataModel 管理。 DataModel 的 header :

@class Hotel;

@interface DataModel : NSObject {}

-(int)hotelCount;

DataModel 实现:

#import "DataModel.h"
#import "Hotel.h"

// Private methods
@interface DataModel ()

@property (nonatomic, retain) NSMutableArray *hotels;

-(void)loadHotels;

@end

@implementation DataModel

@synthesize hotels;

- (id)init {
    if ((self = [super init])) {
        [self loadHotels];
    }
    return self;
}

- (void)dealloc {
    [hotels release];
    [super dealloc];
}

- (void)loadHotels

hotels = [[NSMutableArray arrayWithCapacity:30] retain];

Hotel *hotel = [[Hotel alloc] init];
hotel.HotelID = 0;
hotel.Name = @"Solmar";
hotel.Capacity = 186;
// more data to be added eventually
[hotels addObject:hotel];
[hotel release];

Hotel *hotel = [[Hotel alloc] init];
hotel.HotelID = 1;
hotel.Name = @"Belair";
hotel.Capacity = 389;
[hotels addObject:hotel];
[hotel release];

// and so on... I have 30 hotels hard coded here.

- (int)hotelCount {
    return self.hotels.count;
}

@end

此设置工作正常。但是,我不知道如何实现对数据进行硬编码的 loadHotel 部分。我想用具有相同信息的 plist 替换它。如何读取 plist 文件以分配每个键的信息(名称、容量等)?



Best Answer-推荐答案


创建 plist 后,您可以将其内容加载到字典中,如下所示:

NSString *plistPath = [[NSBundle mainBundle] pathForResource:plistFileName ofType:nil];
NSDictionary *plistDict = [NSDictionary dictionaryWithContentsOfFile:plistPath];

然后您可以使用 plist 中的键查询您需要的任何数据:

NSArray *hotelsFromPlist = [plistDict objectForKey:"hotels"];

// remember this is autoreleased, so use alloc/initWithCapacity of you need to keep it
NSMutableArray *hotels = [NSMutableArray arrayWithCapacity:[hotelsFromPlist count]];

for (NSDictionary *hotelDict in hotelsFromPlist) {
    Hotel *hotel = [[Hotel alloc] init];
    hotel.name = [hotelDict objectForKey"name"];
    hotel.capacity = [hotelDict objectForKey"capacity"];
    [hotels addObject:hotel];
}

希望这会有所帮助。

为了代码的正确性而编辑

关于iphone - 如何将 plist 数据读入数据模型?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7422482/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap