gpt4 book ai didi

ios - 自定义框架内的图像设置

转载 作者:行者123 更新时间:2023-11-30 11:01:39 25 4
gpt4 key购买 nike

我正在尝试在自定义框架内设置图像,我正在使用以下方法来设置它。它在任何地方都可以工作,但在我的自定义 UITableViewCell 中不起作用。

self.imageView.image = UIImage(named:"image",in: Bundle(for: type(of: self)), compatibleWith: nil)

我收到错误:

Cannot call value of non-function type 'NSInteger' (aka 'Int')

为什么它在 UITableViewCell 中不起作用。

最佳答案

其实我自己已经解决了。

而不是这样调用。

self.imageView.image = UIImage(named:"image",in: Bundle(for: type(of: self)), compatibleWith: nil)

将其更改为:

self.imageView.image = UIImage(named:"image",in: Bundle(for: MyCustomCell.self), compatibleWith: nil)

这正在工作。

关于ios - 自定义框架内的图像设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53300574/

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