0
我需要得到應用(bundlePath或bundleURL)的路徑,而不應用程序名稱bundelPath沒有應用程序的名稱
NSUrl *strUrl = [[NSBundle mainBundle]bundleURL];
NSString *str = [[NSBundel mainBundel]bundlePath];
我如何去
我需要得到應用(bundlePath或bundleURL)的路徑,而不應用程序名稱bundelPath沒有應用程序的名稱
NSUrl *strUrl = [[NSBundle mainBundle]bundleURL];
NSString *str = [[NSBundel mainBundel]bundlePath];
我如何去
兩個NSURL
和NSString
有方法去除最後的路徑組件,所以這應該給你你要找的東西:
NSURL *strUrl = [[[NSBundle mainBundle] bundleURL] URLByDeletingLastPathComponent];
NSString *str = [[[NSBundle mainBundle] bundlePath] stringByDeletingLastPathComponent];