WZTransitionLabel 0.0.2

WZTransitionLabel 0.0.2

测试已测试
语言语言 Objective-CObjective C
许可证 MIT
发布最后发布2014年12月

Wenbin Zhang 维护。



  • Wenbin Zhang

WZTransitionLabel 是 UCLAiiLabel 的子类,当切换标签文本时提供了自定义过渡效果。

wztransitionlabel

安装

您可以通过在 pod spec 中添加 pod 'WZTransitionLabel' 来安装它,或者只需将 WZTransitionLabel.hWZTransitionLabel.m 拖动到您的项目中。

用法

WZTransitionLabel *label = [[WZTransitionLabel alloc] initWithFrame:CGRectMake(0, 0, 300, 200)];
label.attributedText = [[NSAttributedString alloc] initWithString:@"test string" attributes:@{NSForegroundColorAttributeName: [UIColor blackColor]}];
NSAttributedString *toString = [[NSAttributedString alloc] initWithString:@"another string" attributes@{NSForegroundColorAttributeName:[UIColor redColor]}];
[label transiteToAttributedString:toString animated:YES duration:1.5];