You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm getting the following error: Type 'MyTableViewCell' does not conform to protocol 'LayoutLoading'.
My original problem is that I want to use a library like Kingfisher or SDWebImage to load an image inside my cell. layoutNode.setState doesn't allow that, so it looks like I need an outlet, but I don't know how to create an outlet for a view in a Layout-based UITableViewCell.
I can create a custom view for my cell contents and then manually put it into a UITableViewCell subclass, but is there a better way to do it?
The text was updated successfully, but these errors were encountered:
Is there a way to achieve that?
When I'm trying something like this:
I'm getting the following error: Type 'MyTableViewCell' does not conform to protocol 'LayoutLoading'.
My original problem is that I want to use a library like Kingfisher or SDWebImage to load an image inside my cell.
layoutNode.setState
doesn't allow that, so it looks like I need an outlet, but I don't know how to create an outlet for a view in a Layout-basedUITableViewCell
.I can create a custom view for my cell contents and then manually put it into a
UITableViewCell
subclass, but is there a better way to do it?The text was updated successfully, but these errors were encountered: