Swift 如何为 jsqmessageViewcontroller 的集合制作自定义单元格
Swift How can i make custom cell for the collection of jsqmessageViewcontroller
我想了解如何操作,
什么 类 子类化。
覆盖什么等等。
对于jsqmessageViewcontroller框架
例如传出单元格,如何构建我的布局和标签
任何帮助将不胜感激
是的,我确实搜索过它,但没有找到很多相关信息
这是您可以关注的系列http://www.raywenderlich.com/78550/beginning-ios-collection-views-swift-part-1
只需创建一个自定义单元格或 xib,然后在实现 JSQ 框架时只需在
中使用您的自定义单元格
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
//Configure your cell here
return //yourCustomCell
}
我想了解如何操作, 什么 类 子类化。 覆盖什么等等。 对于jsqmessageViewcontroller框架
例如传出单元格,如何构建我的布局和标签
任何帮助将不胜感激
是的,我确实搜索过它,但没有找到很多相关信息
这是您可以关注的系列http://www.raywenderlich.com/78550/beginning-ios-collection-views-swift-part-1
只需创建一个自定义单元格或 xib,然后在实现 JSQ 框架时只需在
中使用您的自定义单元格override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
//Configure your cell here
return //yourCustomCell
}