gpt4 book ai didi

ios - stringByAppendingPathComponent 不可用

转载 作者:行者123 更新时间:2023-11-30 12:22:48 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/44587979/

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