Why is Refactor... grayed out (disabled) in Xcode?
I'd like to rename a class.
|
Why is Refactor... grayed out (disabled) in Xcode? I'd like to rename a class.
| |||
|
feedback
|
|
Select the class's symbol in its header file - i.e. the bit just after | |||||||||||
feedback
|
|
If you are using Objective-C++ (i.e. mix Objective-C with C++ code) then refactoring is disabled in xcode since it does not support refactoring of C++ code. | |||||
feedback
|
|
Refactor might also be disabled if affected files (most likely the file with your class in it) are not saved. | |||||||||
feedback
|
|
For me I realized Refactor was disabled because the Xcode project I had opened was referencing a Base SDK that was missing. Edit Project Settings and in the Build tab set the Base SDK to one that you have (like for me this was iOS 4.2). This enabled Refactor for me. | |||
|
feedback
|
|
Also, it could happen that you renamed the filename for the class, either outside xcode or by ctrl-clicking the filename and then renaming it. xcode refuses to refactor if filename does not match with the class name. | |||
|
feedback
|
|
Had this problem as well. I ran through trying to find missing SDKs, saving files, and looking for Objective-C++ code as mentioned above, and all it took to fix my machine was rebooting XCode. Seems a little buggy still. BTW, this was for XCode 4.0.1 | |||
|
feedback
|
|
Even though there is no 'refactor' option for right-click menu on the file (like in Eclipse), you can click | |||
|
feedback
|