簡明的C++函數指針進修教程。本站提示廣大學習愛好者:(簡明的C++函數指針進修教程)文章只能為提供參考,不一定能成為您想要的結果。以下是簡明的C++函數指針進修教程正文
按例先看下後果圖:
思緒
創立一個view
作為一切內容的父控件, 而且添加到下面一個 label
, 作為顯示文字的載體
UILabel* contentLabel = [[UILabel alloc] init]; [contentLabel sizeToFit]; contentLabel.backgroundColor = [UIColor clearColor]; _contentLabel = contentLabel; [self addSubview:self.contentLabel];
給內容view
的layer
添加一個mask
層, 而且設置其規模為全部view
的bounds
, 如許就讓超越view
的內容不會顯示出來
CAShapeLayer* maskLayer = [CAShapeLayer layer]; maskLayer.path = [UIBezierPath bezierPathWithRect:self.bounds].CGPath; self.layer.mask = maskLayer;
給label
添加動畫
CAKeyframeAnimation* keyFrame = [CAKeyframeAnimation animation]; keyFrame.keyPath = @"transform.translation.x"; keyFrame.values = @[@(0), @(-space), @(0)]; keyFrame.repeatCount = NSIntegerMax; keyFrame.duration = self.speed * self.contentLabel.text.length; keyFrame.timingFunctions = @[[CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut], [CAMediaTimingFunction functionWithControlPoints:0 :0 :0.5 :0.5]]; keyFrame.delegate = self; [self.contentLabel.layer addAnimation:keyFrame forKey:nil];
應用辦法
// 創立 CFDynamicLabel* testLabel = [[CFDynamicLabel alloc] initWithFrame:CGRectMake(100, 300, 180, 21)]; // 設置轉動速度 testLabel.speed = 0.6; [self.view addSubview:testLabel]; // 設置根本屬性 testLabel.text = @"我不想說再會,不說再會,越長年夜越孤獨"; testLabel.textColor = [UIColor yellowColor]; testLabel.font = [UIFont systemFontOfSize:23]; testLabel.backgroundColor = [UIColor grayColor];
總結
以上就是這篇文章的全體內容了,願望本文的內容對年夜家的進修或許任務能帶來必定的贊助,假如有疑問年夜家可以留言交換。