是 UILabel 的子类,具有丰富的样式,例如自动检查链接、支持正则表达式。
它支持
pod 'RichStyleLabel'
RichStyleLabel *regexLabel = [[RichStyleLabel alloc] initWithFrame:CGRectMake(0, 200, 320, 100)];
NSDictionary* redTextAttributes = @{ NSForegroundColorAttributeName : [UIColor redColor]};
[regexLabel setAttributedText:@"123Hello, world! " withRegularPattern:@"^[0-9]+" attributes:redTextAttributes];
查看项目以获取更多详细信息。
RichStyleLabel 在 MIT 许可证下可用。有关更多信息,请参阅 LICENSE 文件。