mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-05-26 02:06:48 +08:00
24 lines
471 B
Objective-C
24 lines
471 B
Objective-C
//
|
|
// BandwidthPriorityCell.m
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 05.07.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import "BandwidthPriorityCell.h"
|
|
|
|
@implementation BandwidthPriorityCell
|
|
|
|
- (void)awakeFromNib {
|
|
// Initialization code
|
|
}
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
[super setSelected:selected animated:animated];
|
|
|
|
// Configure the view for the selected state
|
|
}
|
|
|
|
@end
|