Category: Xcode

  • How to rename default view controllers in XCode

    Xcode by default provides default name for the view controllers depending upon on the selected projects templates. For example, while creating Tabbed Application, you will find FirstViewController and SecondViewController as the name for default view controllers. Now if you want to provide a proper name to the FirstViewControllers and SecondViewControllers you can use the Rename…

  • XCode – Open file in same window on double click

    Xcode by default displays project file in a seperate window when the user double clicks on the file. And if you want to change this behavior and to open the file in the same window as that of single click then you can use the options provided as part of Xcode Preferences. Step 1: Launch…

  • How to disable code completion suggestion in Xcode

    Xcode is one of the powerful IDE for IOS development and by default it supports code completion suggestion. Code completion feature suggests users with possible code substitution when you start typing first few letters of code in Xcode editor. For example, if you have UILabel reference variable and start typing “t” after the dot then…

  • How to set Organization name for Xcode Project

    When ever a new project is created in Xcode, the projects files like header and implementation files will have auto generated comment section at the top of the file. This comment section will have information such as file name, Project name, Author and Organization name. // // ViewController.h // Welcome // // Created by Ravi…