up vote 19 down vote favorite
3
share [g+] share [fb]

Why is Refactor... grayed out (disabled) in Xcode?

I'd like to rename a class.

link|improve this question

76% accept rate
feedback

8 Answers

up vote 28 down vote accepted

Select the class's symbol in its header file - i.e. the bit just after @interface. Then the refactoring stuff should be enabled.

link|improve this answer
My class's header file has only @interface, no @class. But selecting the symbol after @interface seems to work. – Elliot Jul 8 '09 at 23:04
1  
@class if for forward declarations…s – Jonathan Sterling Aug 17 '09 at 4:49
This has been bothering me for quite some time also. Thanks! – Jonatan Hedborg Dec 23 '09 at 10:41
Even this does not enable refactoring in xcode 4. I am becoming hopeless, why apple do not improve their Refactoring things. There is Eclipse to follow, how to do things! – karim Jun 17 '11 at 14:13
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.

link|improve this answer
Yes and it's really annoying!!! – sbwoodside Aug 21 '09 at 3:09
Very sad, almost 2 years later and it still won't refactor the Objective-C objects. – christophercotton Apr 10 '11 at 22:42
feedback

Refactor might also be disabled if affected files (most likely the file with your class in it) are not saved.

link|improve this answer
1  
Saving a xib file in Interface Builder re-enabled Refactoring for me, when even relaunching Xcode wasn't helping, thanks! – Vincent Gable Jun 2 '10 at 12:48
1  
+1 for this. Some corners of XCode still have rough areas and this is one of them. Sometimes if saving doesn't enable refactoring, rebuilding will. – Answerbot Feb 25 '11 at 1:33
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.

link|improve this answer
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.

link|improve this answer
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

link|improve this answer
feedback

Even though there is no 'refactor' option for right-click menu on the file (like in Eclipse), you can click file > save as, and change its name.

link|improve this answer
feedback

Select the file, press Enter

Like renaming a file in Finder!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.