-
-
Notifications
You must be signed in to change notification settings - Fork 6k
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
Solved XCode7 abort trap:6 bug #274
Conversation
- Failable initializers can’t override non-failable initializers - observeValueForKeyPath’s signature didn’t match the signature of the method it was overriding
Archiving the project in XCode 7 does not throw compiler exception anymore
Could share why you make the changes this way? What's the difference here. BTW, the coding style is not identical to others, especially where you put '{}' |
It's a compiler bug. Here is a radar explaining it. http://www.openradar.me/22138918 |
Hi!
|
I can change the codestyling or, if not interested, I'll close the request. |
Let's wait a little for Xcode 7 beta 5 - see if it is fixed. If Apple does not handle that then we'll have to make the workarounds... |
ok |
I actually like this syntax better. It is very clear what the edge conditions are and the variable is only set once so it's easier to follow the assignment. |
We could change the flow to this kind of flow as a refactoring commit.... On Wed, Aug 5, 2015 at 5:31 PM, Pierre-Marc Airoldi <
|
Anyone knows if this was fixed in Xcode 7 beta 5? |
yes it is. tried the code in the radar on beta-4 and it failed. Beta 5 it compiled fine. 👍 |
Archiving the project in XCode 7 does not throw compiler exception
anymore