Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在 messageBubble 内的文本中隐藏链接?我不需要它!
是否有一些设置可以设置,例如:
disableLink = true
非常感谢您的回复!
在 JSQMessagesCellTextView.h 中
放
self.dataDetectorTypes = UIDataDetectorTypeNone;
同样在 JSQMessagesViewController.m 第 543 行设置为
cell.textView.dataDetectorTypes = UIDataDetectorTypeAll;
必须是(示例)
cell.textView.dataDetectorTypes = UIDataDetectorTypeAddress;