Objective-C:从路径字符串中提取文件名

问题描述

取自NSString 参考,您可以使用:

Nsstring *theFileName = [[string lastPathComponent] stringByDeletingPathExtension];

lastPathComponent调用将返回,thefile.ext并且stringByDeletingPathExtension将从末尾删除扩展后缀。

解决方法

当我有NSString/Users/user/Projects/thefile.extthefile用Objective-C方法提取时。

最简单的方法是什么?