vote up 1 vote down star

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

I'd like to rename a class.

flag

71% accept rate

3 Answers

vote up 3 vote down check

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

link|flag
My class's header file has only @interface, no @class. But selecting the symbol after @interface seems to work. – Elliot Jul 8 at 23:04
@class if for forward declarations…s – Jonathan Sterling Aug 17 at 4:49
vote up 3 vote down

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|flag
Yes and it's really annoying!!! – sbwoodside Aug 21 at 3:09
vote up 1 vote down

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

link|flag

Your Answer

Get an OpenID
or

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