1234567891011121314151617181920 |
- //
- // NSString+CGSize.h
- // TheoryNetwork
- //
- // Created by tederen on 2019/10/15.
- // Copyright © 2019 tederen. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface NSString (CGSize)
- + (CGSize)calculateSizeWithString:(NSString *)string fontSize:(CGFloat)size;
- @end
- NS_ASSUME_NONNULL_END
|