From 6c0ba3d9b2fd8be364554455ed3add48b1241d06 Mon Sep 17 00:00:00 2001 From: "Jay Freeman (saurik)" Date: Sat, 26 Feb 2011 23:55:33 -0800 Subject: Reloading the world should really just /un/load the world. --- UICaboodle/RVPage.h | 2 ++ UICaboodle/RVPage.mm | 4 ++++ 2 files changed, 6 insertions(+) (limited to 'UICaboodle') 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; } -- cgit v1.2.3