问题描述
取自NSString 参考,您可以使用:
Nsstring *theFileName = [[string lastPathComponent] stringByDeletingPathExtension];
lastPathComponent
调用将返回,thefile.ext
并且stringByDeletingPathExtension
将从末尾删除扩展后缀。
解决方法
当我有NSString
我/Users/user/Projects/thefile.ext
想thefile
用Objective-C方法提取时。
最简单的方法是什么?