Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wanted to rename the files .h, .m. .xib into my own name.

I have created a tabbed application, and I did single click on the source browser, and changed

FirstViewController.h to FVC.h
FirstViewController.m to FVC.m

and changed respective places to include FVC.h.

It works for me. But what i would like to know is that is this the right approach that i can go ahead with?.. will there be any hidden issues with this approach?

share|improve this question

1 Answer

up vote 0 down vote accepted

The only "gotcha" is that if you are using the nibName in your code (ie initWithNibName:), you obviously need to change that too. I personally have gotten bit with that problem - the app launches then crashes when it tries to push that broken object.

share|improve this answer
1  
Here's a nice way to do it more simply: iosdeveloperzone.com/2011/05/14/… – ObjectiveFlash Dec 10 '12 at 0:13
@ObjectiveFlash is absolutely correct - use 'Refactor' in the left Xcode pane! Totally missed this. – David H Dec 10 '12 at 12:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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