Add maximumLineCount to ASTextNode... which corresponds to maximumNumberOfLines on the underlying container

This commit is contained in:
andyscott
2015-01-26 21:05:28 -08:00
parent f200f9504a
commit 72ea1c94df
4 changed files with 23 additions and 0 deletions

View File

@@ -64,6 +64,12 @@ typedef NS_ENUM(NSUInteger, ASTextNodeHighlightStyle) {
*/
@property (nonatomic, readonly, assign, getter=isTruncated) BOOL truncated;
/**
@abstract The maximum number of lines to render of the text before truncation.
@default 0 (No limit)
*/
@property (nonatomic, assign) NSUInteger maximumLineCount;
/**
@abstract The number of lines in the text. Text must have been sized first.
*/