I have noticed code from other sources where the author has not added the messages to super that are shown below. I usually add them both, but I was just curious as to what
The purpose of those methods is to notify your controller when the view it controls has finished loading, and finished unloading, in case there are things that the controller needs to accomplish in those "interesting moments".
The code that you've included basically does nothing: it passes the messages on to the superclass implementation, without adding any processing of its own. But that's exactly what would happen if that code was omitted entirely: the message would be delivered to the lowest class in the inheritance chain that defined an implementation for the method.