TTTableItem 图像大小
我有以下代码:
TTTableItem *item =
[TTTableSubtitleItem
itemWithText:group.name
subtitle:[NSString stringWithFormat:@"%@ members %@ topics ", group.members_count , group.topics_count]
imageURL:imageURL
URL:@""
];
有没有办法调整 imageURL 中设置的图像大小?
I have the following code:
TTTableItem *item =
[TTTableSubtitleItem
itemWithText:group.name
subtitle:[NSString stringWithFormat:@"%@ members %@ topics ", group.members_count , group.topics_count]
imageURL:imageURL
URL:@""
];
Is there a way to resize the image set in the imageURL?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须创建 TTTableSubtitleItemCell 的自定义子类并调整图像视图的框架。
创建一个子类 TTTableSubtitleItemCell 类,命名为 TableCustomSubtitleItem ,并在您的类中添加一个新的布局子视图函数:
在您的数据源中,您需要使用新的 TTTableItemCell 而不是默认的 TTTableSubtitleItemCell:
You will have to create a custom subclass of TTTableSubtitleItemCell and adjust the frame of the image view.
create a subclass TTTableSubtitleItemCell class, named TableCustomSubtitleItem , and add a new layout subviews function in your class:
In your data source, you need to use your new TTTableItemCell instead of the default TTTableSubtitleItemCell: