Created
May 19, 2016 15:41
-
-
Save DonMag/9a3fc77a479594f583c47ca915038f10 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| var v1: UIView | |
| // this seems ok? | |
| guard let vvv = UINib(nibName: "SampleView", bundle: nil).instantiateWithOwner(nil, options: nil)[0] as? UIView else { return } | |
| v1 = vvv | |
| // but this won't compile? | |
| guard v1 = UINib(nibName: "SampleView", bundle: nil).instantiateWithOwner(nil, options: nil)[0] as? UIView else { return } | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment