All posts by Dorian

iOS Support Matrix with three new iPads

EDIT: Please use the updated version

The iOS Support Matrix gets wider and wider. With the three new iPads that came out this year we now have 36 different iOS devices 😮. More than half of them (19) are 64-bit now and will all support iOS 11. And that’s without the upcoming new iPhones.

When the first iOS 11-only device comes out this fall, iOS 10 will have supported all new devices for four years, just like iOS 9 did. This pattern will definitely not change with iOS 11 as the beta already runs on every device released since 2014. Actually, if you buy a top-of-the-line model, this support period is five years. Only “reissues” like the iPad mini and the iPhone 5C, that were released with last years processors, got “only” four years of updates.  That’s pretty cool!

To make room for the new models, I’ve changed the layout of the PDF a little. I hope it’s not too cluttered now. I also added all device identifier strings and fixed a few bugs (thanks, @trevorm137!)

Download iOS Support Matrix v4.3 (PDF)

As always, please report any errors in the comments!

Don’t Drop Meo

For the past three years I’ve been working on my first iOS-Game, Don’t Drop Meo. It started as a side project to learn Swift, but soon became a full-blown indie game. After two months of beta testing I’m now anxiously working on the final version and can’t wait to release it!

Here’s the awesome trailer, created by my friend Linh Mai:

If you want to know more about the game follow @dontdropmeo in Twitter!

 

Another Update to the iOS Support Matrix: iOS 10, iPhone 7 Added

EDIT: Please use the updated version

Download iOS Support Matrix 4.2

Well, the title says it all. I didn’t find the time yet to come up with a new layout and icons for the new features (like “no headphone jack” 😜). But I guess the most important thing here are the new device identifiers and which devices stopped being supported by iOS 10, and that’s all included.

Download iOS Support Matrix v4.2 (PDF)

As always, please let me know in the comments if you find any errors or have suggestions for the next update!

There is also a more compact version of this matrix available, from the authors of the original version (get it at iossupportmatrix.com). I just still prefer this old layout because of all the details like identifier strings and the feature matrix, even if the file is now almost too big to view it on my 27″ monitor.

iPhone SE, iPad Pro, New Features added to iOS Support Matrix

EDIT: Please use the updated version

iOS Support MatrixHere’s another update of the iOS Support Matrix. I’ve included the new devices that came out this week and added many new device features to that tiny icons section. To make room for the new stuff, I had to add another row and replace some of the older icons. Here’s a list of all changes:

New Icons:

  • 3D Touch
  • Barometer
  • Apple Pencil
  • Bluetooth version
  • Siri
  • CarPlay
  • HealthKit
  • Split View
  • Slide Over & Picture in Picture
  • Watch Connectivity

Removed Icons:

  • Bluetooth LE (replaced with exact BT version)
  • ARM version (you’ll find that in the header of each section)
  • Wifi (all devices have it)
  • Location Services (all devices have it)
  • Microphone (all devices except  iPod touch 1-3 have it. The icon is now used to indicate Siri support)

Download iOS Support Matrix v4.1 (PDF)

You’ll notice that the bigger this chart gets, the less usable it is. Maybe with the next batch of devices I’ll come up with a better format, maybe something interactive where you can filter for specific features you need for your app. Any suggestions are welcome!

By the way, I got most of the infos that weren’t in the original file from these great Wiki pages:

Wikipedia – List of iOS devices
iPhone Wiki – List of Models

Let me know in the comments if you find any errors!

Here’s a quick Update to the iOS Support Matrix

Edit: Please use the updated version

iOS Support Matrix Update
I know that there will be new iOS devices coming out in the next weeks, but I needed an updated version of the great (but outdated) “iOS Support Matrix” now. So I just went ahead and made one 😉

I’ve added five new devices, the iPod touch 6th gen, iPhone 6s & 6s Plus, iPad mini4 and iPad Pro. I also changed the names of the iPads to the common number scheme (“iPad 3” instead of “new iPad”).

Hope you like it and please let me know if you find any errors.

Download PDF

PS: I didn’t have time to add icons for the new hardware features like Barometer and 3D Touch, please bear with me!

How to implement Unique Constraints in Core Data with iOS 9

With iOS 9, Apple introduces Unique Constraints for Core Data. This new feature was briefly demonstrated at WWDC in June (Session 220). When I tried to implement it, I came across a few pitfalls and unexpected behavior, so I thought this might be worth a blog post.

Unique Constraints are a way to declare a custom attribute to be unique across all instances of an entity. Its intended use case is the import of external data that should be merged with existing objects in the database.
Continue reading How to implement Unique Constraints in Core Data with iOS 9

Scup 1.1 released – now runs on Linux as well

I’ve just released a minor update for Scup. If you have already installed Scup, you should get the update automatically the next time you launch it. If not, get it here.

The new version 1.1 adds the new set type “Sample Collection”, enables bulk editing of the track type parameter and fixes a few issues (thanks for your bug reports!). Continue reading Scup 1.1 released – now runs on Linux as well

How To Make A Friendly Facebook Like Button

First I was very excited when I saw the new Facebook Like Button. But when I checked the code to see how it works, I noticed that this button actually allows Facebook to track all the Facebook users on your site, no matter if they click it or not (see my previous post on how this works).

As a publisher, you might not want to annoy the visitors of your site with that. So I hacked together an alternative like button, that only connects to Facebook if you click it. Continue reading How To Make A Friendly Facebook Like Button