И
self.navigationController
in B view controller is nil. You need to create UINavigationController
with B view controller as rootViewController
. Present created UINavigationController
from A instead presenting B view controller, after this you're able to use self.navigationController
in B view controller.