Type Erasure
It's parameters all the way down
Update: You can read even more about type erasure with lots of example code
A friend of mine @purpleyay gave a talk at try! Swift in Japan about type erasure this week last month. For those of us who didn't attend, what's the deal with type erasure anyway?
More specifically, what is type erasure in the context of . . .
Bridges of Siracusa County
ObjectiveCBridgeable
We live in an imperfect world. It isn't always practical to throw out all your Objective-C code and start over. Framework authors (including Apple) are even more constrained: lots of apps aren't 100% Swift and won't ever be. Making the next version of Photos.framework only available to Swift is a non-starter.
What's a . . .
Warning: Photos.framework may unleash Zalgo
For the most part the new Photos.framework is a refreshing replacement for the old Asset Library interface. It was so clearly built to handle the massive (and every increasing) size of photo libraries.
Sore Spots
There are a few sore spots. The first is annoying but minor: The title that Photos displays for an individual . . .
Xcode 7.3 b4, Swift 2.2
A new beta means a new compiler. Check out the official release notes for more information.
Swift 2.2
- Lots of compiler crashes have been fixed.
- You can use
#if swift(>=x.y)
checks to gate the use of compiler features. This should finally make it possible to have a single branch support multiple versions of Swift . . .
Xcode 7.3 b2, Swift 2.2
The bug fixes continue to come flooding in. As always, get the full details in the official release notes.
Swift 2.2
- Failable and throwing initializers can both exit before initializing all stored properties or calling
super.init()
- Nested C structs now import as nested Swift structs
@objc
is now valid on enums . . .
Swift 3 Open Source
Early Christmas Present
You may have heard already but Swift is now open source! As of 9:09 AM PST the site is still choking under heavy load but the associated github repos are now public.
Grabbing the source:
Run brew install cmake ninja
. Create a main directory to hold all the associated repos, then clone:
git clone . . .
UITouchType.Stylus
Supporting the Pencil
I'm happy to finally be able to share what I've been working on: supporting the Apple Pencil.
In this post I want to cover the basics of supporting UITouchType.Stylus
, some conveniences to make it easier to support iOS 8 and iOS 9.0, and a hole in the current processing of events in iOS that can make supporting the Pencil . . .