0
在最新版本的Xcode 7(測試版5)中,NSString方法stringByAppendingPathComponent:已被完全刪除。這在處理文件路徑時非常有用stringByAppendingPathComponent:在Xcode 7 beta 5中
是否有一種新方法可以替換它或實現類似的功能?
在最新版本的Xcode 7(測試版5)中,NSString方法stringByAppendingPathComponent:已被完全刪除。這在處理文件路徑時非常有用stringByAppendingPathComponent:在Xcode 7 beta 5中
是否有一種新方法可以替換它或實現類似的功能?
取出以NSURL,你可以使用這個:
NSURL(string: yourPath)!.URLByAppendingPathComponent(pathComponent)
或大部分保持兼容
NSString(string: yourPath).stringByAppendingPathComponent(pathComponent)
這可能會幫助:https://forums.developer.apple.com/thread/13580 似乎人們只是切換到URL而不是路徑或使用擴展名。 –