gpt4 book ai didi

swift - 以编程方式创建贴纸包,将 UICollectionViewCell 转换为 MSStickerView 时出现问题

转载 作者:搜寻专家 更新时间:2023-10-30 21:59:52 25 4
gpt4 key购买 nike

因此,我选择在我的消息扩展贴纸包中不使用 Storyboard。 iMessage 应用程序带有 Storyboard文件和 MessagesViewController.swift。我创建了 2 个名为 CollectionViewController 和 StickerCell 的文件。这个想法是将 CollectionViewCell 子类化并将其转换为 MSStickerView 并将该 View 作为“单元格”出列到我的 CollectionView 中。

这是将“StickerCell”设置为 MSSstickerView 的代码:

override func collectionView(_ collectionView: UICollectionView, cellForItemAt indexPath: IndexPath) -> UICollectionViewCell {
let item = data[indexPath.row]
return deQStickerCell(for: item, at: indexPath)
}

private func deQStickerCell(for sticker: MSSticker, at indexPath: IndexPath) -> UICollectionViewCell {
let cell = collectionView?.dequeueReusableCell(withReuseIdentifier: "Cell", for: indexPath) as! StickerCell
cell.stickerView.sticker = sticker
return cell
}

以及我的 StickerCell 类中的代码:

class StickerCell: UICollectionViewCell {
var stickerView: MSStickerView!
}

我猜问题就在这里,因为我已经成功地使用 Storyboard和 StickerClass 中的确切代码完成了此操作,除了 var 是一个 IBOutlet。很明显有些东西没有连接到 CollectionView 或者我错过了一步。在 Interface Builder 中,我会创建 CollectionViewController,给它一个 CollectionView,给它一个 CollectionViewCell,然后在上面放一个 UIView 并将它的类更改为 MSStickerView。

如何以编程方式重新创建 Interface Builder 工作流程!?

最佳答案

很难确切知道您的问题是什么,但据我所知,您没有返回带有 stickerView subview 的 StickerCell。与 IB 不同的是,您永远不会初始化 stickerView。您需要添加一个 init 来创建 View 并将其添加到您的单元格中。类似于(伪代码):

override init(frame: CGRect) {
super.init(frame: frame)

self.stickerView = StickerView()
self.contentView.addSubview(self.stickerView)
// Set up your constraints & layout
}

关于swift - 以编程方式创建贴纸包,将 UICollectionViewCell 转换为 MSStickerView 时出现问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47086515/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com