Sök…
Hur du hämtar den senaste strängkomponenten från NSURL String.
NSURL *url = [NSURL URLWithString:@"http://www.example.com/images/apple-tree.jpg"];
NSString *fileName = [url lastPathComponent];
// fileName = "apple-tree.jpg"
Hur du hämtar den sista strängkomponenten från URL (NSURL) i Swift
Swift 2.3
let url = NSURL(string: "http://google.com/lastPath")
let lastPath = url?.lastPathComponent
Swift 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
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow