I work with old project and in some part of the project, the naming convention is not good so I want to change it.
For example:
@property (weak, nonatomi
New in Xcode 9 you can rename an outlet (or action) in the code and storyboard at the same time.
*DISCLAIMER: This feature only works in Xcode 9 (released September 2017) and above. Make sure to backup your project before using it. After making outlet name changes, test the affected screen(s) to make sure there are not issues. I tested this in a sample Objective C project successfully but it could cause problems in existing, more complex projects.
To rename an outlet...
@property (weak, nonatomic) IBOutlet UIButton *btnRequestCode;
@property (weak, nonatomic) IBOutlet UIButton *requestCodeButton;