Live data from Hacker News

Swift 1.2 and Xcode 6.3 beta

developer.apple.com

11–20 of 94 posts

Re: Swift 1.2 and Xcode 6.3 beta

#14

Earlier quoted context omitted.

Because Apple chooses to only give access to betas and their release notes to registered developers.

How does that benefit Apple?

They probably aren't interested in catering their beta kit to people who aren't Apple Developers... A good way to cut out a ton of noise in one step.

Re: Swift 1.2 and Xcode 6.3 beta

#17
This is so strange. Right now we have

iOS 8.2 beta and 8.3 beta

XCode 6.2 beta and 6.3 beta

How is the release cycle going to work? When will 8.2 and 8.3 come out and which is more stable for Swift work.

Re: Swift 1.2 and Xcode 6.3 beta

#18

This might be easily overlooked: optional has been introduced (back-ported?) to Objective-C in the form of nullability annotation!

I think this is a much-needed feature for integrating Swift into existing large Objective-C apps. Dealing with all the AnyObject optionals coming from Cocoa frameworks makes working with Swift painful.

Re: Swift 1.2 and Xcode 6.3 beta

#20
post #5
post #4

Earlier quoted context omitted.

short of having a language mechanism for doing an 'uninitialized' let, conditional operators could work: let x : Something = condition ? foo() : bar() but yeah, it would be nice to defer initialization of an immutable.

Let's hope you don't have a baz.

you can torture the logic further:

let x : Something = outer_conditional ? baz() : conditional ? foo() : bar()

Post reply on HN