I have an iPhone Application with multiple view controllers , in all view controller’s header is common.
I dont want to use the same method and create common view in all controllers.
So My questions is how do i use this common view in all controllers.
I have an iPhone Application with multiple view controllers , in all view controller’s
Share
Use initWithNibNamed:”name of your xib” when you alloc your new view controller. It’s simple.