停止多行表格行中的图像扩展?
我在实现允许文本换行的表格行时遇到问题,并且左侧还有一个图像,右侧有一个公开附件。
多行文本很好,但是当有多于一行文本时,imageView 会向右扩展。我希望所有行中的图像大小相同。我尝试将 autoresizingMask 设置为 UIViewAutoresizingNone 但这似乎不起作用..我需要使用 contentView 或 nib 文件吗?
任何帮助/示例代码表示赞赏!
I'm having problems implementing a table row that allows text to wrap to multiple lines, and also has an image on the left, and a disclosure accesssory on the right.
The multiline text is fine but the imageView expands to the right when there is more than one line of text. I want images in all rows to be the same size. I've tried setting the autoresizingMask to UIViewAutoresizingNone but this doesn't seem to work.. Do I need to use the contentView, or a nib file?
Any help/example code appreciated!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果所有图像的大小都不同,那么您应该考虑将 ImageView 作为子视图添加到单元格中。根据图像视图保留标签。
If all off your images are different size then you should think of adding a ImageView as Subview to cell. Keep Labels depending on the Imageview.
请参阅停止图像在多行表行中扩展? #2
pls see Stop image expanding in multiline table row? #2