mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-10 16:09:09 +08:00
28 lines
647 B
Objective-C
28 lines
647 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>
|
|
#import "IconHalfCloud.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;
|
|
|
|
@property (weak, nonatomic) IBOutlet IconHalfCloud *iconDL;
|
|
@property (weak, nonatomic) IBOutlet IconHalfCloud *iconUL;
|
|
|
|
@end
|