mirror of
https://github.com/moonlight-stream/moonlight-ios.git
synced 2025-07-01 23:35:59 +00:00
21 lines
457 B
Objective-C
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
|