Re: [swift-users] Previous Swift version e-books

2017-09-28 Thread Jack Lawrence via swift-users
+ Brian Hi James, I don’t think we publish old versions of the book anywhere (Brian, correct me if I’m wrong...). The best place to request this would be https://bugreport.apple.com . Jack > On Sep 28, 2017, at 7:58 AM, James Dempsey via swift-users > wrote: >

Re: [swift-users] Is it possible to install Swift 4 on El Capitan with Xcode 8?

2017-09-04 Thread Jack Lawrence via swift-users
Note that you cannot submit a binary to the App Store that was built using a custom toolchain. Jack > On Sep 4, 2017, at 1:47 PM, Fritz Anderson via swift-users > wrote: > > On 2-Sep-2017, at 5:04 AM, Mr Bee via swift-users > wrote: > >> Since I'm still using my

Re: [swift-users] Core Data auto-generated Swift files errors?

2017-01-16 Thread Jack Lawrence via swift-users
This is better suited to the Apple developer forums/stack overflow, FYI. > I selected "Class Definition" in the CodeGen pop up menu in the inspector. This tells Xcode to automatically create and maintain the entity classes for you. They don't show up in the project navigator because they're autog

Re: [swift-users] Documentation for Linux Development

2016-12-18 Thread Jack Lawrence via swift-users
Hi Steven, The Swift book is also available on the web here: https://developer.apple.com/library/content/documentation/Swift/Conceptual/Swift_Programming_Language/ The reference for the swift standard library is available on the web here: https://developer.apple.com/reference/swift We don't cu

Re: [swift-users] Why API marked as `macOS 10.12+` can be used in macOS 10.11?

2016-09-25 Thread Jack Lawrence via swift-users
The API Reference SDK availability section in the documentation is incorrect for symbols defined in a Swift overlay. This is a known issue. Unless it has an explicit @available attribute (check the generated interface), any symbol defined in a Swift overlay is available for all platform versions

Re: [swift-users] Serial DispatchQueue and documentation?

2016-08-01 Thread Jack Lawrence via swift-users
Serial is the default for a DispatchQueue. Jack > On Aug 1, 2016, at 4:34 PM, Jon Shier via swift-users > wrote: > > Is it? I can’t tell by either the generated interface (default is not a > useful value to expose) or a brief read of the Queue.swift file for it. > > > Jon > >> On Aug 1, 20

Re: [swift-users] Are value semantics really appropriate in a diagramming app?

2016-08-01 Thread Jack Lawrence via swift-users
Jens: Why? There are significant benefits to value semantics for this type of problem, for the reasons laid out in the WWDC videos. It would be helpful to know why you disagree in this case—maybe there are solutions to the issues you’re thinking of. Rick: I’d think that value semantics would be

Re: [swift-users] Compiler switch?

2016-01-05 Thread Jack Lawrence via swift-users
Hi Don, It’s not currently possible to disable any warnings emitted by the Swift compiler. Alternatively, you could run a fix-it pass over all of the code after translation, which automatically accepts all suggested fix-its: swiftc -fixit-all input_file.swift Jack > On Jan 5, 2016, at 7:02 PM,

Re: [swift-users] Need Help with C-to-Swift (finally)

2015-12-11 Thread Jack Lawrence via swift-users
Did you make the class and its methods public? Jack > On Dec 11, 2015, at 6:16 PM, Gage Morgan wrote: > > Here's what I'm getting: > > /home/mgage/swift-cairo-bindings/test/main.swift:4:15: error: module 'Cairo' > has no member named 'Surface' > let surface = Cairo.Surface(format: CAIRO_FORMAT