1 #import <UICaboodle/UCPlatform.h>
3 #import <UIKit/UIKit.h>
5 @interface
UIViewController (Cydia
)
9 @interface CYViewController
: UIViewController
{
14 // The default implementation of this method is essentially a no-op,
15 // but calling the superclass implementation is *required*.
18 // This URL is used to save the state of the view controller. Return
19 // nil if you cannot or should not save the URL for this page.
20 - (NSURL
*) navigationURL
;
22 // By default, this delegate is unused. However, it's provided here in case
23 // you need some kind of delegate in a subclass.
24 - (void) setDelegate
:(id
)delegate
;
27 // Override this in subclasses if you manage the "has seen first load" state yourself.
30 // This is called when the view managed by the view controller is released.
31 // That is not always when the controller itself is released: it also can
32 // happen when more memory is needed by the system or whenever the controller
33 // just happens not to be visible.
34 - (void) releaseSubviews
;