-
Notifications
You must be signed in to change notification settings - Fork 3.1k
New issue
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
v 1.1.0 safeAreaLayoutGuide Crsah #477
Comments
so sorry, safeAreaLayoutGuide is my PR. |
Do not understand why this change, with the use of examples do not match, easy to read down |
@CDYeah you are right, it is my mistake |
#473 fixed this issue. |
When release new version?
|
@robertjpayne We need release a new version for iOS 11 and iPhone X. |
is this just a mistake? |
@iwill when did a new version for iOS 11 and iPhone X will release? Now 1.1.0 will crash |
@wuweili Sorry, I'm also waiting for it ... |
I'm using a gist temporarily which works fine. |
I see the source code: mas_safeAreaLayoutGuide is isEqual to mas_safeAreaLayoutGuideBottom so if you use mas_safeAreaLayoutGuide to code: make.edges.equalTo(self.view.mas_safeAreaLayoutGuide); it mean : make.edges.equalTo(self.view.mas_safeAreaLayoutGuideBottom); so it crash to resolve , you can use: make.top.equalTo(self.view.mas_safeAreaLayoutGuideTop); instead |
why demo is ok? |
@yimao009 because demo uses the latest version with this fix. The latest cocoapods version has this problem. Just compare |
@cloudkite Could you bump version? or I could do it and prepare a pull request. |
I fixed the crash for almost a year. Could you please release a new version with #473 ??? @robertjpayne @cloudkite @nickynick |
@robertjpayne @cloudkite @nickynick Is it possible to have a new patched released version of Masonry with this fix? It has been almost 2 years now since this issue was raised |
@jwilliams-handy as temporally solution, you could use my fork. |
Thanks @pingwinator. I’m currently using the fork temporarily but would love for the development team to push up the new version to master so was trying to just echo sentiments. |
this ok:
make.top.equalTo(self.view.mas_safeAreaLayoutGuideTop);
make.left.equalTo(self.view.mas_safeAreaLayoutGuideLeft);
make.right.equalTo(self.view.mas_safeAreaLayoutGuideRight);
this crash:
make.top.left.right.equalTo(self.view.mas_safeAreaLayoutGuide);
why?
The text was updated successfully, but these errors were encountered: