I\'m using Xcode 6 Beta 4. I have this weird situation where I cannot figure out how to appropriately test for optionals.
If I have an optional xyz, is the correct w
Now you can do in swift the following thing which allows you to regain a little bit of the objective-c if nil else
if nil else
if textfieldDate.text?.isEmpty ?? true { }