mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-12 09:18:30 +08:00
17 lines
352 B
Objective-C
17 lines
352 B
Objective-C
//
|
|
// TorrentListProgressView.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 01.10.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TorrentListProgressView : UIProgressView
|
|
|
|
/// set downloaded progress from 0 to 1
|
|
@property( nonatomic ) NSNumber *downloadedProgress;
|
|
|
|
@end
|