mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
26 lines
574 B
Objective-C
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
|