diff options
Diffstat (limited to 'UICaboodle')
-rw-r--r-- | UICaboodle/RVPage.h | 2 | ||||
-rw-r--r-- | UICaboodle/RVPage.mm | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/UICaboodle/RVPage.h b/UICaboodle/RVPage.h index 68b6283..5dbccfd 100644 --- a/UICaboodle/RVPage.h +++ b/UICaboodle/RVPage.h @@ -15,6 +15,8 @@ // but calling the superclass implementation is *required*. - (void) reloadData; +- (void) unloadData; + // This URL is used to save the state of the view controller. Return // nil if you cannot or should not save the URL for this page. - (NSURL *) navigationURL; diff --git a/UICaboodle/RVPage.mm b/UICaboodle/RVPage.mm index 1f366c1..d4803f0 100644 --- a/UICaboodle/RVPage.mm +++ b/UICaboodle/RVPage.mm @@ -59,6 +59,10 @@ extern bool IsWildcat_; loaded_ = YES; } +- (void) unloadData { + loaded_ = NO; +} + - (NSURL *) navigationURL { return nil; } |