The following line does the job if url is a NSString:
NSString *filename = [url lastPathComponent];
If url is a NSURL, then the following does the job:
NSString *filename = [[url path] lastPathComponent];
NSString *filename = [url lastPathComponent];
NSString *filename = [[url path] lastPathComponent];