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
I get a bad access exception by switching the version from 4.0.0 to 4.1.0 (or higher):
Internal.swift line 155: switch (first, anchors.first, second, anchors.second) {
line 155: switch (first, anchors.first, second, anchors.second) {
Full error: Thread 1: EXC_BAD_ACCESS (code=1, address=0x600100000000)
Thread 1: EXC_BAD_ACCESS (code=1, address=0x600100000000)
By calling horizontalAnchors in a custom UIView.
horizontalAnchors
//... private let containerView: UIView override init(frame: CGRect) { //... super.init(frame: frame) self.addSubview(self.containerView) self.containerView.horizontalAnchors == self.horizontalAnchors // Runtime error here. } //...
I've tried searching for any associated zombie objects, but couldn't find any.
Everything is working fine prior to version 4.1.
Did something significant change between the versions that I am not aware of? Or am I looking over something trivial?
The text was updated successfully, but these errors were encountered:
Which version of Swift are you using?
Sorry, something went wrong.
Hi @ZevEisenberg, thanks for responding! We are using Swift 3.2.
@ZevEisenberg Same problem with Swift 4.2, Xcode 10.1.
Can anyone who is still seeing this (👋 @iBolom) please post a sample project that reproduces this issue?
No branches or pull requests
I get a bad access exception by switching the version from 4.0.0 to 4.1.0 (or higher):
Internal.swift
line 155: switch (first, anchors.first, second, anchors.second) {
Full error:
Thread 1: EXC_BAD_ACCESS (code=1, address=0x600100000000)
By calling
horizontalAnchors
in a custom UIView.I've tried searching for any associated zombie objects, but couldn't find any.
Everything is working fine prior to version 4.1.
Did something significant change between the versions that I am not aware of? Or am I looking over something trivial?
The text was updated successfully, but these errors were encountered: