as we know, if you need to override a method in base class in swift, you have to declare "override" keyword before that method. if that method is private, you can still "override" it in swift, just add NO override keyword. However, you can not call super.MethodName(), that's my problem.
say, there's a private method in UINavigationController, namely "_startCustomTransition", I can do this in my custom MyNavigationController.swift
class MyNavigationController: UINavigationController {
func _startCustomTransition() {
// I can not call super._startCustomTransition()
}
}
So, how can I do that super call? Thanks.