mirror of
https://github.com/SoPat712/YTLitePlus.git
synced 2025-10-29 12:00:47 -04:00
25 lines
753 B
Objective-C
25 lines
753 B
Objective-C
//
|
|
// FLEXMultilineTableViewCell.h
|
|
// FLEX
|
|
//
|
|
// Created by Ryan Olson on 2/13/15.
|
|
// Copyright (c) 2020 FLEX Team. All rights reserved.
|
|
//
|
|
|
|
#import "FLEXTableViewCell.h"
|
|
|
|
/// A cell with both labels set to be multi-line capable.
|
|
@interface FLEXMultilineTableViewCell : FLEXTableViewCell
|
|
|
|
+ (CGFloat)preferredHeightWithAttributedText:(NSAttributedString *)attributedText
|
|
maxWidth:(CGFloat)contentViewWidth
|
|
style:(UITableViewStyle)style
|
|
showsAccessory:(BOOL)showsAccessory;
|
|
|
|
@end
|
|
|
|
/// A \c FLEXMultilineTableViewCell initialized with \c UITableViewCellStyleSubtitle
|
|
@interface FLEXMultilineDetailTableViewCell : FLEXMultilineTableViewCell
|
|
|
|
@end
|