Category Archives: Tutorial

Swift Standard Library: Generators, Sequences and Collections

A large part of the Swift Standard Library is concerned with Generators, Sequences and Collections and functions that operate on them, so it’s pretty important to have a good understanding of them. Generators A Generator is anything that conforms to … Continue reading

Posted in Swift, Swift Standard Library, Tutorial | Tagged , , , , | Leave a comment

Getting Travis CI Working with Your iOS GitHub Builds in Under 10 Minutes

I try to make sure that all my Open Source repositories on GitHub compile and run correctly, but it is easy to miss some dependency on my system or some other bug. So it’s nice to have the ability to … Continue reading

Posted in Tutorial | Leave a comment

Using CommonCrypto in Swift

Using CommonCrypto in Swift is tricky because it is not a standalone module, so you cannot just import CommonCrypto. In this post I will describe three methods that facilitate using CommonCrypto in Swift and how to choose which method is best … Continue reading

Posted in Objective-C, Swift, Tutorial | 6 Comments