2013-01-08 97 views
0

我需要得到應用(bundlePath或bundleURL)的路徑,而不應用程序名稱bundelPath沒有應用程序的名稱

NSUrl *strUrl = [[NSBundle mainBundle]bundleURL]; 

NSString *str = [[NSBundel mainBundel]bundlePath]; 

我如何去

回答

3

兩個NSURLNSString有方法去除最後的路徑組件,所以這應該給你你要找的東西:

NSURL *strUrl = [[[NSBundle mainBundle] bundleURL] URLByDeletingLastPathComponent]; 

NSString *str = [[[NSBundle mainBundle] bundlePath] stringByDeletingLastPathComponent]; 
相關問題