iOS 仿微信灵活添加标签
原作者的github 地址 喜欢的点赞
https://github.com/DreamFlyingCow/TTTags
效果如下,iOS 13 访问私有属性 会崩溃,自己修改一下即可
TTTagView.m 文件修改如下
我的备份:https://github.com/AlexanderYeah/TTTagDemo
// [_tfInput setValue:_inputPlaceHolderTextColor forKeyPath:@"_placeholderLabel.textColor"];
NSMutableAttributedString *placeholderString = [[NSMutableAttributedString alloc] initWithString:@"" attributes:@{NSForegroundColorAttributeName : _inputPlaceHolderTextColor}];
_tfInput.attributedPlaceholder = placeholderString;

本文介绍了一个仿微信风格的iOS标签视图组件,可在项目中灵活添加和使用标签。原作者提供了GitHub地址,组件在iOS13中访问私有属性会遇到问题,已给出解决方案并附带修改后的代码备份。
776

被折叠的 条评论
为什么被折叠?



