Removed used SVProgressHUD call.

This commit is contained in:
Ash Furrow
2013-12-25 10:24:25 -05:00
parent 92bb7a606c
commit 19ebfcce1f
2 changed files with 1 additions and 5 deletions

View File

@@ -13,11 +13,11 @@
@interface FRPFullSizePhotoViewModel : RVMViewModel
-(instancetype)initWithPhotoArray:(NSArray *)photoArray initialPhotoIndex:(NSInteger)initialPhotoIndex;
-(FRPPhotoModel *)photoModelAtIndex:(NSInteger)index;
@property (nonatomic, readonly, strong) NSArray *model;
@property (nonatomic, readonly) NSInteger initialPhotoIndex;
@property (nonatomic, readonly) NSString *initialPhotoName;
-(FRPPhotoModel *)photoModelAtIndex:(NSInteger)index;
@end

View File

@@ -51,10 +51,6 @@
imageView.contentMode = UIViewContentModeScaleAspectFit;
[self.view addSubview:imageView];
self.imageView = imageView;
[self.viewModel.didBecomeActiveSignal subscribeNext:^(id x) {
[SVProgressHUD dismiss];
}];
}
-(void)viewDidAppear:(BOOL)animated {