stringByAppendingPathComponent:在Xcode 7 beta 5中

时间:2015-08-31 23:20:53

标签: ios xcode nsstring xcode7 xcode7-beta5

在最新版本的Xcode 7(beta 5)中,NSString方法stringByAppendingPathComponent:已被完全删除。在处理文件路径时,这非常有用

是否有新的方法来替换它或实现类似的功能?

1 个答案:

答案 0 :(得分:0)

将其删除为NSURL,您可以使用:

  NSURL(string: yourPath)!.URLByAppendingPathComponent(pathComponent)

或大多数兼容性

 NSString(string: yourPath).stringByAppendingPathComponent(pathComponent)