气泡内的 JSQMessagesViewController 时间戳
JSQMessagesViewController timestamp inside bubble
我在我的聊天应用程序中使用 JSQMessagesViewController。
我想在右下角的气泡内添加一个小的时间戳文本。
我进行了很多搜索,但找不到使用提供的 API 来完成此操作的任何方法。
知道我该怎么做吗?
谢谢,
丹尼尔
只需创建一个自定义单元格或 xib,然后在实现 JSQ 框架时只需在
中使用您的自定义单元格
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView?.dequeueReusableCellWithReuseIdentifier("[YOURCUSTOMCELLIDENTIFYER]", forIndexPath: indexPath)
//Configure your cell here
return cell
}
我在我的聊天应用程序中使用 JSQMessagesViewController。
我想在右下角的气泡内添加一个小的时间戳文本。
我进行了很多搜索,但找不到使用提供的 API 来完成此操作的任何方法。
知道我该怎么做吗?
谢谢, 丹尼尔
只需创建一个自定义单元格或 xib,然后在实现 JSQ 框架时只需在
中使用您的自定义单元格override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
let cell = collectionView?.dequeueReusableCellWithReuseIdentifier("[YOURCUSTOMCELLIDENTIFYER]", forIndexPath: indexPath)
//Configure your cell here
return cell
}