MLEmojiLabel icon indicating copy to clipboard operation
MLEmojiLabel copied to clipboard

Automatic URL recognition and custom expression like wechat

Results 5 MLEmojiLabel issues
Sort by recently updated
recently updated
newest added

![image](https://user-images.githubusercontent.com/9163388/53784944-c74b1c00-3f51-11e9-8e2c-50648ff8d6d7.png) 这里为什么要用逗号,编译器有个警告看着烦躁

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);