ADTickerLabel 0.67

ADTickerLabel 0.67

测试已测试
Lang语言 Obj-CObjective C
许可证 MIT
发布最新发布2016年10月

Anton Domashnev维护。



  • 作者:
  • Anton Domashnev

一个 Objective-C 的 UIView,它提供了一种显示滚动机制的数字(如计数器),点击可查看视频。


要求

ADTickerLabel 在 iOS 7.0 或更高版本上运行,且仅兼容 ARC 项目。它依赖于以下 Apple 框架

  • Foundation.framework
  • UIKit.framework
  • CoreGraphics.framework
  • QuartzCore.framework

为了构建 ADTickerLabel,您需要 LLVM 3.0 或更高版本。


将 ADGraphView 添加到您的项目中

源文件

将 ADTickerLabel 添加到您的项目的另一种方法是直接将源文件和资源添加到项目中。

  1. 下载最新代码版本或将仓库作为 git 子模块添加到您的 git 追踪项目中。
  2. 在 Xcode 中打开您的项目,然后将 ADTickerLabel.hADTickerLabel.m 文件拖放到项目中(使用“产品导航视图”)。如果从项目外部提取了代码存档,请确保选择复制项目。
  3. 使用 #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

  • 更新至 iOS 7(最小)和 64位架构。

**版本 0.59 @ 22.6.13

  • 添加支持更改文本动画速度。

版本 0.5 @ 10.6.13

  • 首次发布。