You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
359 B
19 lines
359 B
//
|
|
// DTFTextLayer.h
|
|
// BioAuthEngine
|
|
//
|
|
// Created by 王伟伟 on 2017/12/5.
|
|
// Copyright © 2017年 DTF. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
#import <CoreGraphics/CoreGraphics.h>
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface DTFTextLayer : CATextLayer
|
|
|
|
@property (nonatomic, copy) NSAttributedString *attrStr;
|
|
|
|
- (CGSize)stringSize;
|
|
|
|
@end
|