#include <objc/objc.h>
#include <objc/runtime.h>
+#include <errno.h>
+
+#include <cstdio>
+#include <cstdlib>
+
@implementation UIView (RVBook)
- (void) resetViewAnimated:(BOOL)animated {
@end
-@implementation UITable (RVBook)
-
-- (void) resetViewAnimated:(BOOL)animated {
- [self selectRow:-1 byExtendingSelection:NO withFade:animated];
-}
-
-- (void) clearView {
- [self clearAllData];
-}
-
-@end
-
-@implementation UISectionList (RVBook)
+@implementation UITableView (RVBook)
- (void) resetViewAnimated:(BOOL)animated {
- [[self table] resetViewAnimated:animated];
+ //[self selectRowAtIndexPath:nil animated:animated scrollPosition:UITableViewScrollPositionNone];
+ if (NSIndexPath *path = [self indexPathForSelectedRow])
+ [self deselectRowAtIndexPath:path animated:animated];
}
- (void) clearView {
- [[self table] clearView];
+ //XXX:[[self table] clearView];
}
@end