mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-06-11 00:19:10 +08:00
17 lines
383 B
Objective-C
17 lines
383 B
Objective-C
//
|
|
// BandwidthPriorityCell.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 05.07.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define CELL_ID_BANDWIDTHPRIORITY @"bandwidthPriorityCell"
|
|
|
|
@interface BandwidthPriorityCell : UITableViewCell
|
|
@property (weak, nonatomic) IBOutlet UISegmentedControl *segment;
|
|
|
|
@end
|