1
votes

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.

1
did you ever find a solution to this? I'm encountering the same problem. If I find one, I'll let you know. - paiego

1 Answers

1
votes

Perhaps you are overriding a method, and you forgot to call the base implementation