moonlight-ios/Limelight/ViewControllers/LoadingFrameViewController.h
2018-12-28 16:45:05 -08:00

21 lines
457 B
Objective-C

//
// LoadingFrameViewController.h
// Moonlight
//
// Created by Diego Waxemberg on 2/24/15.
// Copyright (c) 2015 Moonlight Stream. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface LoadingFrameViewController : UIViewController
- (void)showLoadingFrame:(void (^)(void))completion;
- (void)dismissLoadingFrame:(void (^)(void))completion;
- (BOOL)isShown;
@property (weak, nonatomic) IBOutlet UIActivityIndicatorView *loadingSpinner;
@end