サーチ…
NSURL Stringから最後の文字列コンポーネントを取得する方法。
NSURL *url = [NSURL URLWithString:@"http://www.example.com/images/apple-tree.jpg"];
NSString *fileName = [url lastPathComponent];
// fileName = "apple-tree.jpg"
SwiftのURL(NSURL)から最後の文字列コンポーネントを取得する方法
Swift 2.3
let url = NSURL(string: "http://google.com/lastPath")
let lastPath = url?.lastPathComponent
スウィフト3.0
let url = URL(string: "http://google.com/lastPath")
let lastPath = url?.lastPathComponent
Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow