2013-04-23 89 views
-3

大部分來自plist的加載數據的示例都是字典。 但是我有一個數組中的plist第一級數據,如:IOS - 如何在屬性列表中加載數組

<plist version="1.0"> 
<array> 
.... 
.... 
.... 
</array> 
</plist> 

我的問題是如何將數據加載到一個NSMutableArray。

+0

應用邏輯和推理,然後搜索NSArray'的'文檔。如果這失敗,只是谷歌。 – 2013-04-23 05:25:49

回答

1
NSString *pListPath = [[NSBundle mainBundle] pathForResource:@"plistName" ofType:@"plist"]; 
NSMutableArray *contentArray = [[NSMutableArray alloc] initWithContentsOfFile:pListPath]; 
+0

它的工作原理,謝謝! – mqasll 2013-04-23 06:29:37

+0

@mqasll歡迎夥伴:) – 2013-04-23 06:37:02

1
NSString *path = [[NSBundle mainBundle] pathForResource:@"Level1" ofType:@"plist"]; 
    NSMutableArray *array = [[NSMutableArray alloc] initWithContentsOfFile:path]; 
相關問題