Swift 中NSArray ,NSDictionary 的文件保存

/**
注:用于文件保存的全局地址(方便修改)
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?
    struct Key {
        struct Path {
            static let Documents = NSSearchPathForDirectoriesInDomains(.documentDirectory, .userDomainMask, true).first!
            static let arrayPath = "\(Documents)/array.plist"
            static let DictionaryPath = "\(Documents)/dictionary.plist"    
            struct PathKey{
                static let Name = "Name"
                static let Age = "Age"
            }
        }
    }
    ...
}
**/

1 创建NSArray数组

let array:NSArray = ["a","b","c","d","e"]

2 NSArray写入文件

//参数1 保存地址 AppDelegate.Key.Path.arrayPath
//参数2 true(先保存到tem中,等全部写完系统确定无误后在保存到文件中)
array.write(toFile: AppDelegate.Key.Path.arrayPath, atomically: true)

3 读取NSArray内容

//可在全项目中读取
let readArray = NSArray(contentsOfFile: AppDelegate.Key.Path.arrayPath)
print(readArray![2])

4 NSDictionary 同理

//保存
let dictionary:NSDictionary = [AppDelegate.Key.Path.PathKey.Name:"lisi",AppDelegate.Key.Path.PathKey.Age:"24"]   
dictionary.write(toFile: AppDelegate.Key.Path.DictionaryPath, atomically: true)

//读取
let name:NSDictionary = NSDictionary(contentsOfFile: AppDelegate.Key.Path.DictionaryPath)!
print(name[AppDelegate.Key.Path.PathKey.Name]!)
print(name[AppDelegate.Key.Path.PathKey.Age]!)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值