私のアプリには、Settings.bundleデバッグ目的でのみ使用される で定義されたオプションがあります。
からオプションを手動で削除せずに、アプリケーションが本番環境にある場合に、コードからこれを隠す方法はありますSettings.bundle/Root.plistか?
次の行の何か:
#ifdef DEBUG
// Remove the option from the settings bundle
#else
// Show the option in (or don't actually remove the option from) the settings bundle
#endif
ありがとうございました!