Hiding the Close button in the custom web view

You can configure the app to hide the Close button in a custom web view.

Perform this task by editing the file MyConfiguration.plist in the copy of the DeploymentKitApp in Xcode on your computer. Set this option to ensure the user cannot close a custom view and display only a blank screen.

Procedure

  1. In the file MyConfiguration.plist, in the Property List view, locate the key labelled HideCustomViewCloseButton.
    Key Type Value
    HideCustomViewCloseButton Boolean NO
  2. Change the value from NO to YES.
    Note: In the Source Code view, this section appears as follows.
    <key>HideCustomViewCloseButton</key>
    <true/>
    Key Type Value
    HideCustomViewCloseButton Boolean YES

Result

The Close button is not present if this key is set to YES. Setting the value to NO is equivalent to not having this key in the configuration file.