Merge branch 'bugfix/image_width_height_fix' into 'develop'
image width and height fix See merge request BPHV_MIPS/mvm_core_ui!441
This commit is contained in:
commit
11dfea07bd
@ -11,7 +11,7 @@ import UIKit
|
|||||||
@objcMembers open class LoadImageView: View {
|
@objcMembers open class LoadImageView: View {
|
||||||
public let loadingSpinner = MFLoadingSpinner(frame: .zero)
|
public let loadingSpinner = MFLoadingSpinner(frame: .zero)
|
||||||
public let imageView = MFTransparentGIFView(frame: .zero)
|
public let imageView = MFTransparentGIFView(frame: .zero)
|
||||||
public var addSizeConstraintsForAspectRatio = false
|
public var addSizeConstraintsForAspectRatio = true
|
||||||
public var shouldNotifyDelegateOnUpdate = true
|
public var shouldNotifyDelegateOnUpdate = true
|
||||||
var centerX: NSLayoutConstraint?
|
var centerX: NSLayoutConstraint?
|
||||||
var centerY: NSLayoutConstraint?
|
var centerY: NSLayoutConstraint?
|
||||||
@ -173,7 +173,6 @@ import UIKit
|
|||||||
} else {
|
} else {
|
||||||
heightConstraint?.isActive = false
|
heightConstraint?.isActive = false
|
||||||
heightConstraint = imageView.heightAnchor.constraint(equalToConstant: height)
|
heightConstraint = imageView.heightAnchor.constraint(equalToConstant: height)
|
||||||
heightConstraint?.priority = UILayoutPriority(rawValue: 900)
|
|
||||||
}
|
}
|
||||||
heightConstraint?.isActive = true
|
heightConstraint?.isActive = true
|
||||||
}
|
}
|
||||||
@ -183,7 +182,6 @@ import UIKit
|
|||||||
widthConstraint.constant = width
|
widthConstraint.constant = width
|
||||||
} else {
|
} else {
|
||||||
widthConstraint = imageView.widthAnchor.constraint(equalToConstant: width)
|
widthConstraint = imageView.widthAnchor.constraint(equalToConstant: width)
|
||||||
widthConstraint?.priority = UILayoutPriority(rawValue: 900)
|
|
||||||
}
|
}
|
||||||
widthConstraint?.isActive = true
|
widthConstraint?.isActive = true
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user