I'm using OpenFlowSharp by Miguel De Icaza. I'm creating some test applications...
My SampleController extends a UIViewController and implements IOpenFlowDataSource...
SampleController : UIViewController, IOpenFlowDataSource
I have also created a custom navigation controller MyNavigationController that extends UINavigationController. It adds only some functionalities to the basic extended controller. I don't override any methods provided the UINavigationController.
MyNavigationController : UINavigationController
The problem is that when I push a SampleController instance in MyNavigationController, ViewDidLoad method on SampleController is not called. ViewDidAppear and ViewDidDisappear are called normally.
Why? Any suggestions? Thank you. Best regards.