AppCode 2018.1 Help

Extract method

Basics

When the Extract Method refactoring is invoked, AppCode analyses the selected block of code and detects variables that are the input for the selected code fragment and the variables that are output for it.

The detected output variable is used as a return value for the extracted function.

Extracting a method

Extracting a method

  1. In the editor, select a block of code to be transformed into a method or a function.
  2. On the main menu or on the context menu of the selection, choose Refactor | Extract | Method or press N/A.

  3. In the Extract Method dialog box that opens, specify the name of the new function.

  4. Specify method parameters.

  5. In the Targets selector, choose where the method should be declared - in the header file, in a private category, or in the implementation file.

  6. Check the result in the Signature Preview pane and click OK to create the required function.

    The selected code fragment will be replaced with a function call.

    AppCode ExtractMethodRef
Last modified: 19 September 2019