NZLabel 0.0.1

NZLabel 0.0.1

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

Unclaimed 维护。



NZLabel 0.0.1

  • Bruno Tortato Furtado

拥有多种字体和颜色的 UILabel。

NZLabel

Build Status

要求

NZLabel 在 iOS 5.0+ 版本上运行,与 ARC 项目兼容。它依赖于以下 Apple 框架,这些框架应已包含在大多数 Xcode 模板中:

  • Foundation.framework
  • UIKit.framework

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

NZLabel 添加到您的项目中

源文件

或者,您可以直接将源文件添加到项目中。

  1. 下载最新版本的代码 代码版本 或将存储库作为 git 子模块添加到您的跟踪项目。
  2. 在 Xcode 中打开您的项目,然后将 NZLabel 文件夹中的所有文件拖放到项目(使用“Product Navigator 视图”)中。如果您在项目外部提取了代码存档,一定要选择复制项目。

使用方法

#import "NZLabel.h"
...
UIFont *boldFont = [UIFont fontWithName:@"Helvetica-Bold" size:17];
UIColor *blackColor = [UIColor blackColor];
NSString *loren = @"Lorem";
NSString *ipsum = @"ipsum";

[self.labelBlack setBoldFontToString:loren];

[self.labelBlue setFontColor:blackColor string:ipsum];

[self.labelGreen setFont:boldFont string:ipsum];
[self.labelGreen setFontColor:blackColor string:ipsum];

许可证

此代码是根据 MIT 许可证 的条款和条件进行分发的。

变更日志

可以在 wiki 中找到每个 NZLabel 版本的简要摘要。