-
Notifications
You must be signed in to change notification settings - Fork 308
iOS 13 issue when image is set to button in viewDidLayoutSubviews #106
Copy link
Copy link
Open
Description
The problem only appears in iOS 13, it works fine in iOS 12.
When an image is created via FontAwesomeKit and then assigned to a UIButton, it creates another call to viewDidLayoutSubviews which results in an infinite loop and finally an app crash.
The following example illustrates the problem:
class ViewController: UIViewController {
@IBOutlet weak var button: UIButton!
override func viewDidLayoutSubviews() {
super.viewDidLayoutSubviews()
let fakImage = FAKFontAwesome.addressBookOIcon(withSize: 30)
let image = fakImage?.image(with: CGSize(width: 30, height: 30))
// This works fine
// button.setImage(UIImage.add, for: .normal)
// But this fails
button.setImage(image, for: .normal)
}
}
System images or images loaded from files are working fine.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels