gpt4 book ai didi

ios - stringByAppendingPathComponent 不可用

转载 作者:IT王子 更新时间:2023-10-29 04:55:47 25 4
gpt4 key购买 nike

我的应用程序在 Instagram 上分享照片,为此它首先将它保存在一个临时目录中:

let writePath = NSTemporaryDirectory().stringByAppendingPathComponent("instagram.igo")

它适用于 Swift 1.2,但不适用于 Swift 2.0

给出的错误信息是:

stringByAppendingPathComponent is unavailable: use URLByAppendingPathComponent on NSURL instead.

最佳答案

看起来 stringByAppendingPathComponent 方法在 Swift 2.0 中被删除了,所以错误消息建议使用:

let writePath = NSURL(fileURLWithPath: NSTemporaryDirectory()).URLByAppendingPathComponent("instagram.igo")

更新:

URLByAppendingPathComponent() 已被 appendingPathComponent() 取代,因此请执行以下操作:

let writePath = NSURL(fileURLWithPath: NSTemporaryDirectory()).appendingPathComponent("instagram.igo")

关于ios - stringByAppendingPathComponent 不可用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32501627/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com