mirror of
https://github.com/Ranchero-Software/NetNewsWire.git
synced 2024-12-15 02:46:16 +01:00
19 lines
472 B
Objective-C
19 lines
472 B
Objective-C
//
|
|
// RSMultiLineRendererMeasurements.h
|
|
// RSTextDrawing
|
|
//
|
|
// Created by Brent Simmons on 3/4/16.
|
|
// Copyright © 2016 Ranchero Software, LLC. All rights reserved.
|
|
//
|
|
|
|
@import Foundation;
|
|
|
|
@interface RSMultiLineRendererMeasurements : NSObject
|
|
|
|
+ (instancetype)measurementsWithHeight:(NSInteger)height heightOfFirstLine:(NSInteger)heightOfFirstLine;
|
|
|
|
@property (nonatomic, readonly) NSInteger height;
|
|
@property (nonatomic, readonly) NSInteger heightOfFirstLine;
|
|
|
|
@end
|