mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 12:00:47 -04:00
18 lines
424 B
Objective-C
18 lines
424 B
Objective-C
//
|
|
// FLEXKeyValueTableViewCell.m
|
|
// FLEX
|
|
//
|
|
// Created by Tanner Bennett on 1/23/20.
|
|
// Copyright © 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXKeyValueTableViewCell.h"
|
|
|
|
@implementation FLEXKeyValueTableViewCell
|
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
|
|
return [super initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:reuseIdentifier];
|
|
}
|
|
|
|
@end
|