diff options
Diffstat (limited to 'UICaboodle/ResetView.mm')
-rw-r--r-- | UICaboodle/ResetView.mm | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/UICaboodle/ResetView.mm b/UICaboodle/ResetView.mm new file mode 100644 index 0000000..8c0041a --- /dev/null +++ b/UICaboodle/ResetView.mm @@ -0,0 +1,42 @@ +#import "ResetView.h" + +#include <objc/objc.h> +#include <objc/runtime.h> + +@implementation UIView (RVBook) + +- (void) resetViewAnimated:(BOOL)animated { + fprintf(stderr, "%s\n", class_getName(self->isa)); + _assert(false); +} + +- (void) clearView { + fprintf(stderr, "%s\n", class_getName(self->isa)); + _assert(false); +} + +@end + +@implementation UITable (RVBook) + +- (void) resetViewAnimated:(BOOL)animated { + [self selectRow:-1 byExtendingSelection:NO withFade:animated]; +} + +- (void) clearView { + [self clearAllData]; +} + +@end + +@implementation UISectionList (RVBook) + +- (void) resetViewAnimated:(BOOL)animated { + [[self table] resetViewAnimated:animated]; +} + +- (void) clearView { + [[self table] clearView]; +} + +@end |