I am developing an iOS 4 application and I have developed some classes that I want to use in other projects.
One of these classes, called MapViewController , is a subclass of UIViewController. This class uses the XIB file that I created using the interface constructor.
I am wondering if using MapViewController in another project as a superclass from a new class, How can I use the associated XIB?
I want to reuse MapViewController and its XIB, but I don't know if I need to do something with the XIB file.
I do not know how to explain it. If you need more information, let me know.
UPDATE:
I want to create a new class that inherits from MapViewController , for example:
... @interface NewMapViewController : MapViewController { ...
And now, if I want to continue to use the same XIB (one from MapViewController ) , what should I do?
source share