Xcode 5: enable / disable file permissions

How to enable or disable the rights file in my project? In the previous version of Xcode (4.2), it was like the image below, but in Xcode 5 I could not find it.

There is an access right file in the code hierarchy because it was added with the previous version of Xcode.

enter image description here

+6
source share
1 answer
  • Go to your build’s build settings.
  • Make sure you select All instead of General
  • Enter "rights" in the search field
  • The result is a build setup where you can specify where your rights file is located.

It should be noted that for the most part in Xcode 5 you do not need a rights file, since most of its responsibility is handled automatically by Xcode and the preparation profile of your application.

+6
source

Source: https://habr.com/ru/post/954574/


All Articles