I was wondering how can declare a custom UINavigationController in Xcode 4.2 ? I have created a project which uses an API and needs UINavigationController my project does not use story boards and is viewBased application. thanks
I was wondering how can declare a custom UINavigationController in Xcode 4.2 ? I
Share
It’s quite simple to subclass a
UINavigationControllerthrough inheritance. It’s a key concept of OOP.But
as written in the Overview of UINavigationController. So you may not be able to subclass a
UINavigationControllerif you are supporting iOS 5 or earlier. Maybe your subclass could not work correctly. You can find a good discussion on this stackoverflow topic.