수색…
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)에서 마지막 문자열 구성 요소를 가져 오는 방법
스위프트 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