在自定义UITableViewCell中保持UIImageView的宽高比
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了在自定义UITableViewCell中保持UIImageView的宽高比相关的知识,希望对你有一定的参考价值。
所以我想做的是让我的自定义UITableViewCell
包含一个带有图像的UIImageView
,并且让这个ImageView
始终保持与其中的图像相同的宽高比,同时具有与单元格相同的宽度。然后,单元格的高度应与ImageView
的高度相同。
这是我正在使用的代码:
我的自定义UITableViewCell
类:
import UIKit
class ImageTableViewCell: UITableViewCell {
var imageURL: NSURL? {
didSet {
fetchImage()
}
}
@IBOutlet weak var activityIndicator: UIActivityIndicatorView!
@IBOutlet weak var myImageView: UIImageView!
func fetchImage() {
myImageView?.image = nil
guard let imageURL = self.imageURL else {
return
}
activityIndicator?.startAnimating()
let queue = dispatch_get_global_queue(QOS_CLASS_USER_INITIATED, 0)
dispatch_async(queue) {
guard let imageData = NSData(contentsOfURL: imageURL) else { return }
dispatch_async(dispatch_get_main_queue()) {
guard imageURL == self.imageURL else { return }
if let image = UIImage(data: imageData) {
self.tweetImage?.image = image
self.tweetImage?.sizeToFit()
} else { self.tweetImage?.image = nil }
self.spinner?.stopAnimating()
}
}
}
func addRatioConstraint(ratio: CGFloat) {
let ratioConstraint = NSLayoutConstraint(item: myImageView, attribute: .Width, relatedBy: .Equal, toItem: myImageView, attribute: .Height, multiplier: ratio, constant: 0)
ratioConstraint.priority = UILayoutPriorityDefaultHigh //important piece of code
myImageView?.addConstraint(ratioConstraint)
}
}
这是UITableViewController
的相关代码:
override func viewDidLoad() {
super.viewDidLoad()
tableView.rowHeight = UITableViewAutomaticDimension
}
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let mention = mentionSections[indexPath.section].mentions[indexPath.row]
switch mention {
case .Image(let url, let ratio):
guard let imageCell = tableView.dequeueReusableCellWithIdentifier(.Image, forIndexPath: indexPath) as? ImageTableViewCell else { fallthrough }
imageCell.imageURL = url
imageCell.addRatioConstraint(CGFloat(ratio))
return imageCell
//left out code for additional irrelevant cells
}
}
override func tableView(tableView: UITableView, estimatedHeightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
let mention = mentionSections[indexPath.section].mentions[indexPath.row]
switch mention {
case .Image(_, _): return 200
default: return 41
}
}
并了解我正在使用dequeueReusableCellWithIdentifier
函数做什么(这只是为我简化一些扩展):
private extension UITableView {
enum CellIdentifier: String {
case Image = "Image"
case Keyword = "Keyword"
}
func dequeueReusableCellWithIdentifier(cellIdentifier: CellIdentifier, forIndexPath indexPath: NSIndexPath) -> UITableViewCell {
return self.dequeueReusableCellWithIdentifier(cellIdentifier.rawValue, forIndexPath: indexPath)
}
}
很抱歉这么多代码,但我觉得我必须包含所有这些。
现在来问题了!我得到的问题是,当视图首次加载时,一切看起来都很棒,但是当我将设备转换为横向然后将其转回肖像时,我会丢失纵横比,图像会被压扁。像这样:
http://i.imgur.com/tcnBfyH.jpg
但是,如果我删除这行代码(在ImageTableViewCell类的addRatioConstraint(ratio: CGFloat)
方法中):
ratioConstraint.priority = UILayoutPriorityDefaultHigh
(这意味着现在优先级是1000而不是750),一切都按预期工作,除了我现在在控制台中打印出错误:
Unable to simultaneously satisfy constraints.
Probably at least one of the constraints in the following list is one you don't want. Try this: (1) look at each constraint and try to figure out which you don't expect; (2) find the code that added the unwanted constraint or constraints and fix it. (Note: If you're seeing NSAutoresizingMaskLayoutConstraints that you don't understand, refer to the documentation for the UIView property translatesAutoresizingMaskIntoConstraints)
(
"<NSLayoutConstraint:0x7fcfd4d3e690 UIImageView:0x7fcfd4e29a70.trailing == UITableViewCellContentView:0x7fcfd4e29900.trailingMargin>",
"<NSLayoutConstraint:0x7fcfd4d3f5c0 UIImageView:0x7fcfd4e29a70.bottom == UITableViewCellContentView:0x7fcfd4e29900.bottomMargin>",
"<NSLayoutConstraint:0x7fcfd4d3f610 UIImageView:0x7fcfd4e29a70.top == UITableViewCellContentView:0x7fcfd4e29900.topMargin>",
"<NSLayoutConstraint:0x7fcfd4d3f660 UIImageView:0x7fcfd4e29a70.leading == UITableViewCellContentView:0x7fcfd4e29900.leadingMargin>",
"<NSLayoutConstraint:0x7fcfd4d52010 UIImageView:0x7fcfd4e29a70.width == 1.34387*UIImageView:0x7fcfd4e29a70.height>",
"<NSLayoutConstraint:0x7fcfd4e1f200 'UIView-Encapsulated-Layout-Width' H:[UITableViewCellContentView:0x7fcfd4e29900(341)]>",
"<NSLayoutConstraint:0x7fcfd4e1f250 'UIView-Encapsulated-Layout-Height' V:[UITableViewCellContentView:0x7fcfd4e29900(199.5)]>"
)
Will attempt to recover by breaking constraint
<NSLayoutConstraint:0x7fcfd4d52010 UIImageView:0x7fcfd4e29a70.width == 1.34387*UIImageView:0x7fcfd4e29a70.height>
Make a symbolic breakpoint at UIViewAlertForUnsatisfiableConstraints to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
因此,基本上Xcode
所做的是它打破了我的方面限制,试图解决一些冲突。它有效。在我的脑海中,这应该意味着降低该约束的优先级也应该成功吗?
任何帮助都会受到很多人的赞赏,我已经好几天都在苦苦挣扎。
与this answer一样,您正在设置变量宽度约束以及尾随和前导约束。这将导致冲突。
用centerX约束替换尾部/前导约束。
我建议使用锚点。
首先,确保imageView.translatesAutoreisizingMaskIntoConstraints = false
和imageView.contentMode = .scaleAspectFill
然后,根据需要设置每侧的锚点。
imageView.leadingAnchor.constraint(equalTo: self.leadingAnchor).isActive = true
imageView.topAnchor.constraint(equalTo: self.topAnchor).isActive = true
imageView.trailingAnchor.constraint(equalTo: self.trailingAnchor).isActive = true
imageView.bottomAnchor.constraint(self.bottomAnchor).isActive = true
您还可以在约束参数中添加..,constant: Float)
,以设置父锚点和imageView
之间的特定距离。
以上是关于在自定义UITableViewCell中保持UIImageView的宽高比的主要内容,如果未能解决你的问题,请参考以下文章
如何在自定义 UITableViewCell 中增加 Label 的高度
在自定义 UITableViewCell 的子视图中添加 UIViewController
在自定义 UITableViewCell 中调整 UITextView 的大小
UIImageView 未在自定义 UITableViewCell 中显示图像