jsqmessagesviewcontroller link 颜色
jsqmessagesviewcontroller link color
我正在使用 JSQMessagesViewController,但我希望传出消息为白色。我能够更改文本颜色,因此传出消息文本颜色为黑色,而传入消息文本为白色。但是,每当发送 link 时,在传出端 link 文本仍然是白色的,并且它会融入背景图像中,以至于您看不到它。如何更改 link 文本颜色?
在此方法中更改传入文本或传出文本的颜色
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell : JSQMessagesCollectionViewCell = super.collectionView(collectionView, cellForItemAtIndexPath: indexPath) as! JSQMessagesCollectionViewCell
let msg : JSQMessage = (self.demoData?.messages[indexPath.row])! as! JSQMessage
if (!msg.isMediaMessage) {
if(msg.senderId == self.senderId())
{
cell.textView?.textColor = UIColor.blackColor() //change this color for your messages
}else
{
cell.textView?.textColor = UIColor.whiteColor() //change this color for other people message
}
cell.textView?.linkTextAttributes = [NSForegroundColorAttributeName : UIColor.blueColor()] //this is the color of the links
}
return cell;
}
使用此代码,您可以更改链接的颜色
cell.textView?.linkTextAttributes = [NSForegroundColorAttributeName : UIColor.blueColor()] //this is the color of the links
希望对你有帮助
我正在使用 JSQMessagesViewController,但我希望传出消息为白色。我能够更改文本颜色,因此传出消息文本颜色为黑色,而传入消息文本为白色。但是,每当发送 link 时,在传出端 link 文本仍然是白色的,并且它会融入背景图像中,以至于您看不到它。如何更改 link 文本颜色?
在此方法中更改传入文本或传出文本的颜色
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell : JSQMessagesCollectionViewCell = super.collectionView(collectionView, cellForItemAtIndexPath: indexPath) as! JSQMessagesCollectionViewCell
let msg : JSQMessage = (self.demoData?.messages[indexPath.row])! as! JSQMessage
if (!msg.isMediaMessage) {
if(msg.senderId == self.senderId())
{
cell.textView?.textColor = UIColor.blackColor() //change this color for your messages
}else
{
cell.textView?.textColor = UIColor.whiteColor() //change this color for other people message
}
cell.textView?.linkTextAttributes = [NSForegroundColorAttributeName : UIColor.blueColor()] //this is the color of the links
}
return cell;
}
使用此代码,您可以更改链接的颜色
cell.textView?.linkTextAttributes = [NSForegroundColorAttributeName : UIColor.blueColor()] //this is the color of the links
希望对你有帮助