0

アプリ名なしでアプリのパス (bundlePath または bundleURL) を取得する必要があります

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

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

どうすればいいですか

4

1 に答える 1

3

と の両方NSURLNSString、最後のパス コンポーネントを削除するメソッドがあるため、探しているものが得られるはずです。

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

NSString *str = [[[NSBundle mainBundle] bundlePath] stringByDeletingLastPathComponent];
于 2013-01-08T19:30:51.930 に答える