Add missing calls to super.

This commit is contained in:
Zev Eisenberg
2015-07-24 21:12:41 -04:00
parent 10c92ec928
commit 1099f70847
2 changed files with 2 additions and 0 deletions

View File

@@ -31,6 +31,7 @@
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self.imageView setImageFromURLs:@[[NSURL URLWithString:@"http://placekitten.com/101/101"],
[NSURL URLWithString:@"http://placekitten.com/401/401"],
[NSURL URLWithString:@"http://placekitten.com/801/801"]]];

View File

@@ -33,6 +33,7 @@
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
self.imageView.image = nil;
}