有没有办法在messageBubble中的文本中隐藏链接?我不需要!

是否需要设置一些设置,例如:

disableLink = true


非常感谢您的回复!

最佳答案

在JSQMessagesCellTextView.h中



self.dataDetectorTypes = UIDataDetectorTypeNone;


也在JSQMessagesViewController.m中
第543行设置为

     cell.textView.dataDetectorTypes = UIDataDetectorTypeAll;


必须是(示例)

     cell.textView.dataDetectorTypes = UIDataDetectorTypeAddress;

关于objective-c - 隐藏链接的JSQMessagesViewController气泡,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/35943073/

10-13 03:51