JSQMessagesCollectionView を使用して、チャットを可能にするアプリを構築しています。すべてのメッセージ バブルの幅が最初のバブルの幅になっていることに気付き始めたので、今のところ問題なく動作しています。メッセージが最初のバブルよりも長い場合、テキストはカットされます... (バックエンドで送受信したメッセージを確認したところ、テキストはすべて問題ないようです...)
JSQMessagesCollectionView を正しく設定する際に間違っていたかどうか疑問に思っています...そして、私はそれを理解できません:(
これが私のコードです:
// Total number of Messages in Section
override func collectionView(collectionView: UICollectionView, numberOfItemsInSection section: Int) -> Int {
return messages.count
}
// Message Data Model At IndexPath
override func collectionView(collectionView: JSQMessagesCollectionView!, messageDataForItemAtIndexPath indexPath: NSIndexPath!) -> JSQMessageData! {
return messages[indexPath.item]
}
//messageBubbleImageDataForItemAtIndexPath
override func collectionView(collectionView: JSQMessagesCollectionView!, messageBubbleImageDataForItemAtIndexPath indexPath: NSIndexPath!) -> JSQMessageBubbleImageDataSource! {
let message = messages[indexPath.item]
if (outgoing(message)) {
print(outgoingBubble)
return outgoingBubble
} else {
return incomingBubble
}
}
override func collectionView(collectionView: JSQMessagesCollectionView!, avatarImageDataForItemAtIndexPath indexPath: NSIndexPath!) -> JSQMessageAvatarImageDataSource! {
return avatarImageBlank // Return an empty avatar image for now
}
// Collection View text color and hyperlink
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = super.collectionView(collectionView, cellForItemAtIndexPath: indexPath) as! JSQMessagesCollectionViewCell
let message = messages[indexPath.item]
if (outgoing(message)) {
cell.textView!.textColor = UIColor.whiteColor()
} else {
cell.textView!.textColor = UIColor.blackColor()
}
// Under line links
let attributes : [String:AnyObject] = [NSForegroundColorAttributeName:cell.textView!.textColor!, NSUnderlineStyleAttributeName: 1]
cell.textView!.linkTextAttributes = attributes
return cell
}
// Usernames above bubbles at Indexpah
override func collectionView(collectionView: JSQMessagesCollectionView!, attributedTextForMessageBubbleTopLabelAtIndexPath indexPath: NSIndexPath!) -> NSAttributedString! {
let message = messages[indexPath.item]
if (outgoing(message)) {
return nil
}
// Same as previous sender, skip, eg. 2nd message from other sender
if indexPath.item > 0 {
let previousMessage = messages[indexPath.item - 1]
if (previousMessage.senderId() == message.senderId()) {
return nil
}
}
// Otherwise, mark sender's name
return NSAttributedString(string:message.senderDisplayName())
}
//heightForMessageBubbleTopLabelAtIndexPath (Flow Layout)
override func collectionView(collectionView: JSQMessagesCollectionView!, layout collectionViewLayout: JSQMessagesCollectionViewFlowLayout!, heightForMessageBubbleTopLabelAtIndexPath indexPath: NSIndexPath!) -> CGFloat {
let message = messages[indexPath.item]
// Sent by sendor, skip
if (outgoing(message)) {
return CGFloat(0.0)
}
// Same as previous sender, skip
if indexPath.item > 0 {
let previousMessage = messages[indexPath.item - 1]
if (previousMessage.senderId() == message.senderId()) {
return CGFloat(0.0)
}
}
return kJSQMessagesCollectionViewCellLabelHeightDefault
}
着信メッセージと発信メッセージのバブルを次のように定義しました。
let incomingBubble = JSQMessagesBubbleImageFactory().incomingMessagesBubbleImageWithColor(UIColor.lightGrayColor())
let outgoingBubble = JSQMessagesBubbleImageFactory().outgoingMessagesBubbleImageWithColor(UIColor(red: 82.0/255.0, green: 181.0/255.0, blue: 1, alpha: 1.0))