mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 16:50:01 +08:00
21 lines
593 B
Objective-C
21 lines
593 B
Objective-C
//
|
|
// TorrentTitleSectionHeaderView.m
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 09.08.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import "TorrentTitleSectionHeaderView.h"
|
|
|
|
@implementation TorrentTitleSectionHeaderView
|
|
|
|
+ (TorrentTitleSectionHeaderView *)titleSection
|
|
{
|
|
TorrentTitleSectionHeaderView *view = [[[NSBundle mainBundle] loadNibNamed:@"torrentTitleSectionHeader" owner:self options:nil] firstObject];
|
|
//view.icon.image = [view.icon.image imageWithRenderingMode:UIImageRenderingModeAlwaysTemplate];
|
|
return view;
|
|
}
|
|
|
|
@end
|