LoginSignup
4
1

More than 5 years have passed since last update.

Bundle Identifierを取得する方法(Obj-C)

Posted at

Info.plistBundle Identifier に定義している値を取得する方法です。

スクリーンショット_2018-09-13_13_41_29.png

NSBundle *bundle = [NSBundle mainBundle];
NSString *bid = [bundle bundleIdentifier];

参考リンク

4
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
1