mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 08:49:31 +08:00
20 lines
428 B
Objective-C
20 lines
428 B
Objective-C
//
|
|
// TorrentTitleSectionHeaderView.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 09.08.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface TorrentTitleSectionHeaderView : UIView
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *labelTitle;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *icon;
|
|
|
|
|
|
+ (TorrentTitleSectionHeaderView *)titleSection;
|
|
|
|
@end
|