檔案目錄簡單說明:
下面是利用字典將資料寫入到.plist檔案
[cpp]view plain
copy
print?
//// viewcontroller.m
// plist
//// created by rio.king on 13-9-22.
//#import "viewcontroller.h"
@inte***ce viewcontroller ()
@end
@implementation viewcontroller
- (void)viewdidload
-(void)readplist
-(void)createplist
@end
//
// viewcontroller.m
// plist
//// created by rio.king on 13-9-22.
//#import "viewcontroller.h"
@inte***ce viewcontroller ()
@end
@implementation viewcontroller
- (void)viewdidload
-(void)readplist
-(void)createplist
@end
注意:
附註:
或者
輸完單擊enter鍵,退出終端,重新啟動finder就可以了
重啟finder:滑鼠單擊視窗左上角的蘋果標誌-->強制退出-->finder-->重新啟動
iOS 資料持久化 Plist
獲取plist檔案位址 nsstring path nsbundle mainbundle pathforresource people oftype plist 獲取plist檔案內容 乙個字典 nsdictionary dict nsdictionary dictionarywithconten...
檔案資料持久化
概論 所謂的持久化,就是將資料儲存到硬碟中,使得在應用程式或機器重啟後可以繼續訪問之前儲存的資料。在ios開發中,有很多資料持久化的方案,接下來我將嘗試著介紹一下5種方案 ios程式預設情況下只能訪問程式自己的目錄,這個目錄被稱為 沙盒 沙盒的目錄結構如下 應用程式包 nsstring path n...
持久化 檔案
一 檔案 長久儲存資訊的一種資料資訊集合 開啟檔案,用寫的方式 r表示後面字串內容不需要轉義 f稱之為檔案控制代碼 f open r test01.txt w 檔案開啟後必須關閉 f.close 1.with語句開啟檔案 用with語句開啟檔案,不需要關閉 with open r test01.tx...