加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

swift 操作.plist文件 ,解决覆盖的问题

发布时间:2020-12-14 06:22:06 所属栏目:百科 来源:网络整理
导读:1.可以覆盖的代码 static func getIP() - String{ let ipPath = Bundle.main.path( for Resource: "ip" ,ofType: "plist" ) let ipArr = NSDictionary(contentsOfFile: ipPath!) let ip = ipArr?[ "ip" ] as! String return ip } static func set IP(Ip:Stri

1.可以覆盖的代码

static func getIP() -> String{
        let ipPath = Bundle.main.path(forResource: "ip",ofType: "plist")
        let ipArr = NSDictionary(contentsOfFile: ipPath!)
        let ip = ipArr?["ip"] as! String
        return ip
    }

    static func setIP(Ip:String){
        let ipPath = Bundle.main.path(forResource: "ip",ofType: "plist")
        let ipArr = NSDictionary(dictionary: ["ip":Ip])
        ipArr.write(toFile: ipPath!,atomically: true)
    }

2.不覆盖的代码

func getCacheNativeNSDictionary(_ sjBasicId:String) -> NSDictionary?{
    print("sjBasicId:(sjBasicId)")
    let ipPath = Bundle.main.path(forResource: "nativeCache",ofType: "plist")
    let ipArr = NSDictionary(contentsOfFile: ipPath!)
    let ip = ipArr?[sjBasicId] as? NSDictionary
    return ip
}

func setCacheNativeNSDictionary(_ sjBasicId:String,str:NSDictionary){
    let ipPath = Bundle.main.path(forResource: "nativeCache",ofType: "plist")
    let ipArr = NSMutableDictionary(contentsOfFile: ipPath!)
    ipArr?[sjBasicId] = str
    ipArr?.write(toFile: ipPath!,atomically: true)
}

差别

  • let ipArr = NSMutableDictionary(contentsOfFile: ipPath!)
  • 主要是把.plist文件路径与Dictionary关联,则不会覆盖原来的文件

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读