MLEmojiLabel
MLEmojiLabel copied to clipboard
Automatic URL recognition and custom expression like wechat
添加长按手势不响应
 这里为什么要用逗号,编译器有个警告看着烦躁
label.linkTextAttributes = @{NSForegroundColorAttributeName:[UIColor redColor],NSFontAttributeName:[UIFont boldSystemFontOfSize:14]}; label.activeLinkTextAttributes = @{NSForegroundColorAttributeName:[UIColor blueColor],NSFontAttributeName:[UIFont boldSystemFontOfSize:14]}; 为什么,这样写没用?
@molon 感谢MLEmojiLabel库。有个问题请教,我用masonry给label加了约束,但没有显示出来, ``` [_tipLabel mas_makeConstraints:^(MASConstraintMaker *make) { make.left.equalTo(self.contentView).offset(15); make.top.equalTo(self.contentView).offset(5); make.right.equalTo(self.contentView).offset(-15); make.height.equalTo(@40); }]; ``` 用frame的方式可以, _tipLabel.frame = CGRectMake(15, 5, self.contentView.width - 30, 40);