summaryrefslogtreecommitdiff
path: root/platform/ios/Classes/MuLibraryController.m
diff options
context:
space:
mode:
Diffstat (limited to 'platform/ios/Classes/MuLibraryController.m')
-rw-r--r--platform/ios/Classes/MuLibraryController.m2
1 files changed, 2 insertions, 0 deletions
diff --git a/platform/ios/Classes/MuLibraryController.m b/platform/ios/Classes/MuLibraryController.m
index 33907a63..2e3c5d2e 100644
--- a/platform/ios/Classes/MuLibraryController.m
+++ b/platform/ios/Classes/MuLibraryController.m
@@ -25,6 +25,7 @@ static void showAlert(NSString *msg, NSString *filename)
- (void) viewWillAppear: (BOOL)animated
{
+ [super viewWillAppear:animated];
[self setTitle: @"PDF, XPS and CBZ Documents"];
[self reload];
printf("library viewWillAppear (starting reload timer)\n");
@@ -36,6 +37,7 @@ static void showAlert(NSString *msg, NSString *filename)
- (void) viewWillDisappear: (BOOL)animated
{
+ [super viewWillDisappear:animated];
printf("library viewWillDisappear (stopping reload timer)\n");
[timer invalidate];
timer = nil;