菜鸟教程小白 发表于 2022-12-12 17:33:01

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


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

<p>我的“酒店”对象标题:</p>

<pre><code>@interface Hotel : NSObject {}

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

@end
</code></pre>

<p>我的“酒店”对象实现:</p>

<pre><code>@implementation Hotel

@synthesize HotelID, Name, Capacity;

-(void)dealloc {
    ;
    ;
}
</code></pre>

<p>“Hotel”对象由我的 DataModel 管理。
DataModel 的 header :</p>

<pre><code>@class Hotel;

@interface DataModel : NSObject {}

-(int)hotelCount;
</code></pre>

<p>DataModel 实现:</p>

<pre><code>#import &#34;DataModel.h&#34;
#import &#34;Hotel.h&#34;

// Private methods
@interface DataModel ()

@property (nonatomic, retain) NSMutableArray *hotels;

-(void)loadHotels;

@end

@implementation DataModel

@synthesize hotels;

- (id)init {
    if ((self = )) {
      ;
    }
    return self;
}

- (void)dealloc {
    ;
    ;
}

- (void)loadHotels

hotels = [ retain];

Hotel *hotel = [ init];
hotel.HotelID = 0;
hotel.Name = @&#34;Solmar&#34;;
hotel.Capacity = 186;
// more data to be added eventually
;
;

Hotel *hotel = [ init];
hotel.HotelID = 1;
hotel.Name = @&#34;Belair&#34;;
hotel.Capacity = 389;
;
;

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

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

@end
</code></pre>

<p>此设置工作正常。但是,我不知道如何实现对数据进行硬编码的 loadHotel 部分。我想用具有相同信息的 plist 替换它。如何读取 plist 文件以分配每个键的信息(名称、容量等)? </p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>创建 plist 后,您可以将其内容加载到字典中,如下所示:</p>

<pre><code>NSString *plistPath = [ pathForResource:plistFileName ofType:nil];
NSDictionary *plistDict = ;
</code></pre>

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

<pre><code>NSArray *hotelsFromPlist = ;

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

for (NSDictionary *hotelDict in hotelsFromPlist) {
    Hotel *hotel = [ init];
    hotel.name = ;
    hotel.capacity = ;
    ;
}
</code></pre>

<p>希望这会有所帮助。</p>

<p>为了代码的正确性而编辑</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 如何将 plist 数据读入数据模型?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/7422482/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/7422482/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 如何将 plist 数据读入数据模型?