Skip to content
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

Command failed due to signal: Segmentation fault: 11 (xcode 7) #4

Open
djaygit opened this issue Sep 22, 2015 · 0 comments
Open

Command failed due to signal: Segmentation fault: 11 (xcode 7) #4

djaygit opened this issue Sep 22, 2015 · 0 comments

Comments

@djaygit
Copy link

djaygit commented Sep 22, 2015

I updated my xcode 6.4 to xcode 7 (swift 2) and now I'm getting this error in my swift project. After few tries i found out it was happening because of

func containerView() -> UIView {
return self.view
}
which is a protocol of UIViewControllerTransitionCoordinatorContext , if i remove that function then it says my ViewController does not conform to this protocol UIViewControllerTransitionCoordinatorContext . xcode 7 is suggesting me to change the function to

func containerView() -> UIView? {
return self.view
}
and after that it suggests me to delete the question mark.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant