当前位置: 代码迷 >> Iphone >> iphone 下载 解析文件名的步骤
  详细解决方案

iphone 下载 解析文件名的步骤

热度:384   发布时间:2016-04-25 06:40:48.0
iphone 下载 解析文件名的方法
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];
  相关解决方案