mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-05-18 23:16:10 +08:00
24 lines
500 B
Objective-C
24 lines
500 B
Objective-C
//
|
|
// HeaderViewDURates.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 07.07.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface HeaderViewDURates : UIView
|
|
|
|
+ (HeaderViewDURates*)view;
|
|
|
|
- (void)setBoundsFromTableView:(UITableView*)tableView;
|
|
|
|
@property(nonatomic) NSString* uploadString;
|
|
@property(nonatomic) NSString* downloadString;
|
|
|
|
@property(nonatomic) BOOL downLimitIsOn;
|
|
@property(nonatomic) BOOL upLimitIsOn;
|
|
|
|
@end
|