動(dòng)畫寫名字

動(dòng)畫:CAAnimation使用

使用動(dòng)畫來寫名字镐躲!

技術(shù)點(diǎn) {?

// 先導(dǎo)進(jìn)#import 頭文件 使用CAShapeLayer結(jié)合UIBezierPath畫圓侍筛,然后再結(jié)合CAAnimatio執(zhí)行畫圓動(dòng)畫 }

//? shapeLayer.lineJoin = kCALineJoinBevel;

//? lineJoin:要使用的接合類型

//? kCGLineJoinMiter//? 接合點(diǎn)為尖角。這是默認(rèn)的接合類型裆熙。

//? kCGLineJoinBevel

//? 接合點(diǎn)為斜角

//? kCGLineJoinRound//? 接合點(diǎn)為圓角



實(shí)例:

#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;//翻轉(zhuǎn)

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;

}

// 曲線動(dòng)畫的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:構(gòu)成線的ctrun對(duì)象。

CFArrayRef runArray = CTLineGetGlyphRuns(line);

// 每次運(yùn)行

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

{

// 獲取運(yùn)行的字體,

// CTRunRef:運(yùn)行參考

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

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

// 對(duì)于運(yùn)行中的每個(gè)符號(hào)

// CTRunGetGlyphCount:運(yùn)行獲得字形計(jì)數(shù)

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

{

// 獲取字形和字形數(shù)據(jù)

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

最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末邀杏,一起剝皮案震驚了整個(gè)濱河市,隨后出現(xiàn)的幾起案子唤崭,更是在濱河造成了極大的恐慌脖律,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,968評(píng)論 6 482
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件芦疏,死亡現(xiàn)場離奇詭異酸茴,居然都是意外死亡兢交,警方通過查閱死者的電腦和手機(jī),發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,601評(píng)論 2 382
  • 文/潘曉璐 我一進(jìn)店門酪穿,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人被济,你說我怎么就攤上這事只磷。” “怎么了喳瓣?”我有些...
    開封第一講書人閱讀 153,220評(píng)論 0 344
  • 文/不壞的土叔 我叫張陵畏陕,是天一觀的道長。 經(jīng)常有香客問我犹芹,道長鞠绰,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,416評(píng)論 1 279
  • 正文 為了忘掉前任屿笼,我火速辦了婚禮翁巍,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘肝断。我一直安慰自己驰凛,他們只是感情好,可當(dāng)我...
    茶點(diǎn)故事閱讀 64,425評(píng)論 5 374
  • 文/花漫 我一把揭開白布趣钱。 她就那樣靜靜地躺著渔隶,像睡著了一般。 火紅的嫁衣襯著肌膚如雪绞灼。 梳的紋絲不亂的頭發(fā)上呈野,一...
    開封第一講書人閱讀 49,144評(píng)論 1 285
  • 那天,我揣著相機(jī)與錄音军掂,去河邊找鬼昨悼。 笑死,一個(gè)胖子當(dāng)著我的面吹牛终议,可吹牛的內(nèi)容都是我干的葱蝗。 我是一名探鬼主播,決...
    沈念sama閱讀 38,432評(píng)論 3 401
  • 文/蒼蘭香墨 我猛地睜開眼皂甘,長吁一口氣:“原來是場噩夢啊……” “哼悼凑!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起益老,我...
    開封第一講書人閱讀 37,088評(píng)論 0 261
  • 序言:老撾萬榮一對(duì)情侶失蹤捺萌,失蹤者是張志新(化名)和其女友劉穎膘茎,沒想到半個(gè)月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體披坏,經(jīng)...
    沈念sama閱讀 43,586評(píng)論 1 300
  • 正文 獨(dú)居荒郊野嶺守林人離奇死亡棒拂,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點(diǎn)故事閱讀 36,028評(píng)論 2 325
  • 正文 我和宋清朗相戀三年玫氢,在試婚紗的時(shí)候發(fā)現(xiàn)自己被綠了谜诫。 大學(xué)時(shí)的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點(diǎn)故事閱讀 38,137評(píng)論 1 334
  • 序言:一個(gè)原本活蹦亂跳的男人離奇死亡生逸,死狀恐怖且预,靈堂內(nèi)的尸體忽然破棺而出锋谐,到底是詐尸還是另有隱情,我是刑警寧澤涮拗,帶...
    沈念sama閱讀 33,783評(píng)論 4 324
  • 正文 年R本政府宣布多搀,位于F島的核電站,受9級(jí)特大地震影響康铭,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜催跪,卻給世界環(huán)境...
    茶點(diǎn)故事閱讀 39,343評(píng)論 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望夷野。 院中可真熱鬧懊蒸,春花似錦舍咖、人聲如沸予弧。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,333評(píng)論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至谐算,卻和暖如春沈撞,著一層夾襖步出監(jiān)牢的瞬間蜈垮,已是汗流浹背灌曙。 一陣腳步聲響...
    開封第一講書人閱讀 31,559評(píng)論 1 262
  • 我被黑心中介騙來泰國打工菊碟, 沒想到剛下飛機(jī)就差點(diǎn)兒被人妖公主榨干…… 1. 我叫王不留,地道東北人在刺。 一個(gè)月前我還...
    沈念sama閱讀 45,595評(píng)論 2 355
  • 正文 我出身青樓头镊,卻偏偏與公主長得像,于是被迫代替她去往敵國和親魄幕。 傳聞我的和親對(duì)象是個(gè)殘疾皇子相艇,可洞房花燭夜當(dāng)晚...
    茶點(diǎn)故事閱讀 42,901評(píng)論 2 345

推薦閱讀更多精彩內(nèi)容