Files
transshift/TransmissionRPCClient/WaitViewController.h
Alexey Chechetkin f322eea442 Updated to Xcode 9.0
2017-09-25 11:02:55 +03:00

26 lines
574 B
Objective-C

//
// WaitViewController.h
// TransmissionRPCClient
//
// Created by Alexey Chechetkin on 21.04.16.
// Copyright © 2016 Alexey Chechetkin. All rights reserved.
//
#import <UIKit/UIKit.h>
#define CONTROLLER_ID_WAIT @"waitViewController"
@interface WaitViewController : UIViewController
/// holds status text
@property(nonatomic) NSString *statusText;
/// holds timeout value if 0 - timeout is disabled
@property(nonatomic) NSTimeInterval activityTimeout;
/// stops animating activity indicator
/// hides indicator and shows error icon
- (void)stopActivity;
@end