一个 Objective-C 的 UIView,它提供了一种显示滚动机制的数字(如计数器),点击可查看视频。
ADTickerLabel 在 iOS 7.0 或更高版本上运行,且仅兼容 ARC 项目。它依赖于以下 Apple 框架
为了构建 ADTickerLabel,您需要 LLVM 3.0 或更高版本。
将 ADTickerLabel 添加到您的项目的另一种方法是直接将源文件和资源添加到项目中。
ADTickerLabel.h
和 ADTickerLabel.m
文件拖放到项目中(使用“产品导航视图”)。如果从项目外部提取了代码存档,请确保选择复制项目。#import "ADTickerLabel.h"
在需要 ADTickerLabel 的位置包含它。/*
Width and height calculates automatically after you have set the font and characterWidth or if you want you can use default values
*/
ADTickerLabel *tickerLabel = [[ADTickerLabel alloc] initWithFrame: CGRectMake(100, 50, 0, 15)];
tickerLabel.font = [UIFont boldSystemFontOfSize: 12];
tickerLabel.characterWidth = 8;
tickerLabel.textColor = [UIColor whiteColor];
[self addSubview: tickerLabel];
tickerLabel.text = @"1908";
您还可以在示例项目中 ViewController.m 的用法示例中查看。
此代码在 MIT 许可证的条款和条件下分发。
**版本 0.67 @ 21.1.15
**版本 0.59 @ 22.6.13
版本 0.5 @ 10.6.13