动画写名字

动画:CAAnimation使用

使用动画来写名字!

技术点 { 

// 先导进#import 头文件 使用CAShapeLayer结合UIBezierPath画圆,然后再结合CAAnimatio执行画圆动画 }

//  shapeLayer.lineJoin = kCALineJoinBevel;

//  lineJoin:要使用的接合类型

//  kCGLineJoinMiter//  接合点为尖角。这是默认的接合类型。

//  kCGLineJoinBevel

//  接合点为斜角

//  kCGLineJoinRound//  接合点为圆角



实例:

#import "ViewController.h"

#import@interface ViewController ()

@property (nonatomic, strong) CALayer *penLayer;

@property (nonatomic, weak) CAShapeLayer *shapeLayer;

@property (nonatomic, weak) UITextField *nameTitleFile;

@property (nonatomic, weak) UIButton *determineButton;

@end

@implementation ViewController

#pragma mark - Control

- (CAShapeLayer *)shapeLayer

{

if (!_shapeLayer)

{

CAShapeLayer *shapeLayer = [[CAShapeLayer alloc] init];

shapeLayer.frame = self.view.bounds;

shapeLayer.geometryFlipped = YES;//翻转

shapeLayer.strokeColor = [[UIColor blackColor] CGColor];

shapeLayer.fillColor = nil;

shapeLayer.lineWidth = 3.0f;

shapeLayer.lineJoin = kCALineJoinBevel;

self.shapeLayer = shapeLayer;

[self.view.layer addSublayer:shapeLayer];

}

return _shapeLayer;

}

- (UITextField *)nameTitleFile

{

if (!_nameTitleFile)

{

UITextField *nameTitleFile = [[UITextField alloc] init];

nameTitleFile.frame = CGRectMake(10, 64, [UIScreen mainScreen].bounds.size.width - 20, 44);

nameTitleFile.layer.borderWidth = 0.5f;

nameTitleFile.layer.borderColor = [UIColor grayColor].CGColor;

nameTitleFile.placeholder = @"请输入名称";

nameTitleFile.font = [UIFont systemFontOfSize:13];

self.nameTitleFile = nameTitleFile;

[self.view addSubview:nameTitleFile];

}

return _nameTitleFile;

}

- (UIButton *)determineButton

{

if (!_determineButton)

{

UIButton *determineButton = [[UIButton alloc] init];

determineButton.frame = CGRectMake(10, 118, [UIScreen mainScreen].bounds.size.width - 20, 44);

[determineButton setTitle:@"确定" forState:UIControlStateNormal];

[determineButton setBackgroundColor:[UIColor redColor]];

[determineButton addTarget:self action:@selector(determineButtonClick) forControlEvents:UIControlEventTouchUpInside];

self.determineButton = determineButton;

[self.view addSubview:determineButton];

}

return _determineButton;

}

#pragma mark - LfileCycle

- (void)viewDidLoad

{

[super viewDidLoad];

self.title = @"名字签写";

self.nameTitleFile.delegate = self;

self.determineButton;

}

#pragma mark - Touch Event

- (void)determineButtonClick

{

[self setupTextLayer];

[self startAnimation];

}

#pragma mark - setupTextLayer

- (void)setupTextLayer

{

if (self.shapeLayer != nil)

{

[self.penLayer removeFromSuperlayer];

[self.shapeLayer removeFromSuperlayer];

self.shapeLayer = nil;

self.penLayer = nil;

}

// 曲线动画的path

CGMutablePathRef letters = CGPathCreateMutable();

// 文字格式和大小

CTFontRef font = CTFontCreateWithName(CFSTR("Helvetica-Bold"), 46.0, NULL);

NSDictionary *attrs = [NSDictionary dictionaryWithObjectsAndKeys:

(__bridge id)font, kCTFontAttributeName,nil];

// 文字

NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:self.nameTitleFile.text

attributes:attrs];

// 参考线

CTLineRef line = CTLineCreateWithAttributedString((CFAttributedStringRef)attrString);

// CTLineGetGlyphRuns:构成线的ctrun对象。

CFArrayRef runArray = CTLineGetGlyphRuns(line);

// 每次运行

for (CFIndex runIndex = 0; runIndex < CFArrayGetCount(runArray); runIndex++)

{

// 获取运行的字体,

// CTRunRef:运行参考

CTRunRef run = (CTRunRef)CFArrayGetValueAtIndex(runArray, runIndex);

CTFontRef runFont = CFDictionaryGetValue(CTRunGetAttributes(run), kCTFontAttributeName);

// 对于运行中的每个符号

// CTRunGetGlyphCount:运行获得字形计数

for (CFIndex runGlyphIndex = 0; runGlyphIndex < CTRunGetGlyphCount(run); runGlyphIndex++)

{

// 获取字形和字形数据

CFRange thisGlyphRange = CFRangeMake(runGlyphIndex, 1);// 范围

CGGlyph glyph;// 雕文

CGPoint position;// 位置

CTRunGetGlyphs(run, thisGlyphRange, &glyph);

CTRunGetPositions(run, thisGlyphRange, &position);

// 获取轮廓路径

{

CGPathRef letter = CTFontCreatePathForGlyph(runFont, glyph, NULL);

CGAffineTransform t = CGAffineTransformMakeTranslation(position.x, position.y);

CGPathAddPath(letters, &t, letter);

CGPathRelease(letter);

}

}

}

CFRelease(line);

UIBezierPath *path = [UIBezierPath bezierPath];

[path moveToPoint:CGPointZero];

[path appendPath:[UIBezierPath bezierPathWithCGPath:letters]];

CGPathRelease(letters);

CFRelease(font);

self.shapeLayer.path = path.CGPath;

self.shapeLayer.bounds = CGPathGetBoundingBox(path.CGPath);

UIImage *penImage = [UIImage imageNamed:@"noun_project_347_2.png"];

CALayer *penLayer = [CALayer layer];

penLayer.contents = (id)penImage.CGImage;

penLayer.anchorPoint = CGPointZero;

penLayer.frame = CGRectMake(0.0f, 0.0f, penImage.size.width, penImage.size.height);

[self.shapeLayer addSublayer:penLayer];

self.penLayer = penLayer;

}

#pragma mark - startAnimation

- (void)startAnimation

{

[self.shapeLayer removeAllAnimations];

[self.penLayer removeAllAnimations];

self.penLayer.hidden = NO;

CABasicAnimation *pathAnimation = [CABasicAnimation animationWithKeyPath:@"strokeEnd"];

pathAnimation.duration = 10.0;

pathAnimation.fromValue = [NSNumber numberWithFloat:0.0f];

pathAnimation.toValue = [NSNumber numberWithFloat:1.0f];

[self.shapeLayer addAnimation:pathAnimation forKey:@"strokeEnd"];

CAKeyframeAnimation *penAnimation = [CAKeyframeAnimation animationWithKeyPath:@"position"];

penAnimation.duration = 10.0;

penAnimation.path = self.shapeLayer.path;

penAnimation.calculationMode = kCAAnimationPaced;

penAnimation.delegate = self;

penAnimation.removedOnCompletion = NO;

penAnimation.fillMode = kCAFillModeForwards;

[self.penLayer addAnimation:penAnimation forKey:@"position"];

}

@end


githubDemo:https://github.com/EvanYeShao/Animation-write-name

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,904评论 6 497
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,581评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 160,527评论 0 350
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,463评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,546评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,572评论 1 293
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,582评论 3 414
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,330评论 0 270
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,776评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 37,087评论 2 330
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,257评论 1 344
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,923评论 5 338
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,571评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,192评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,436评论 1 268
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,145评论 2 366
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,127评论 2 352

推荐阅读更多精彩内容