mirror of
https://github.com/Swiftgram/Telegram-iOS.git
synced 2025-09-07 21:20:07 +00:00
20 lines
440 B
Objective-C
20 lines
440 B
Objective-C
//
|
|
// ASTextKitFontSizeAdjuster.h
|
|
// AsyncDisplayKit
|
|
//
|
|
// Created by Luke on 1/20/16.
|
|
// Copyright © 2016 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
@interface ASTextKitFontSizeAdjuster : NSObject
|
|
|
|
|
|
- (instancetype)initWithContext:(ASTextKitContext *)context
|
|
minimumScaleFactor:(CGFloat)minimumScaleFactor
|
|
constrainedSize:(CGSize)constrainedSize;
|
|
|
|
- (void) adjustFontSize;
|
|
@end
|