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, nonatomic) IBOutlet UIButton *btnRequestCode;
rename it to -> @property (weak, nonatomic) IBOutlet UIButton *requestCodeButton;
I know that I can delete the IBOutlet
then reconnect but it may take many time and easy make error if careless
Any safe and fast way to do it?
I have tried Refactor -> Rename but it doesn't work and give me an warning
Any help or suggestion would be great appreciated.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…