mirror of
https://github.com/leanote/leanote-ios.git
synced 2025-10-15 15:40:44 +00:00
10 lines
277 B
Objective-C
Executable File
10 lines
277 B
Objective-C
Executable File
#import <UIKit/UIKit.h>
|
|
|
|
@interface UILabel (SuggestSize)
|
|
|
|
- (CGSize)suggestedSizeForWidth:(CGFloat)width;
|
|
- (CGSize)suggestSizeForAttributedString:(NSAttributedString *)string width:(CGFloat)width;
|
|
- (CGSize)suggestSizeForString:(NSString *)string width:(CGFloat)width;
|
|
|
|
@end
|