We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Compilation Error since the rename
Compile What happened? How can we make the problem occur? This could be a description, log/console output, screenshot etc.
public var minimumWidth: CGFloat { if let label: UILabel = self.titleLabel { let size: CGSize = label.systemLayoutSizeFitting(UILayoutFittingCompressedSize) return self.contentInset.left + size.width + self.contentInset.right } if let view: UIImageView = self.imageView { let size: CGSize = view.systemLayoutSizeFitting(UILayoutFittingCompressedSize) return self.contentInset.left + size.width + self.contentInset.right } if let _: UIView = self.customView { return self.contentInset.left + self.width + self.contentInset.right } return self.width }
// TODO(you): code here to reproduce the problem
The text was updated successfully, but these errors were encountered:
No branches or pull requests
[REQUIRED] Step 1: Describe your environment
[REQUIRED] Step 3: Describe the problem
Compilation Error since the rename
Steps to reproduce:
Compile
What happened? How can we make the problem occur?
This could be a description, log/console output, screenshot etc.
Relevant Code:
The text was updated successfully, but these errors were encountered: