add ASTextKitFontSizeAdjuster

This commit is contained in:
Luke Zhao
2016-01-20 16:28:46 -08:00
parent 882379a820
commit f413a618e0
8 changed files with 175 additions and 2 deletions

View File

@@ -0,0 +1,19 @@
//
// 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