Categories
- Code (3)
- Code Snippets (12)
- git (1)
- Hardware (1)
- News (5)
- Objective-C (6)
- Precompiled (4)
- Programming (1)
- Review (1)
- Swift (9)
- Swift Standard Library (3)
- Tips (3)
- Tutorial (22)
- Uncategorized (3)
- WWDC (1)
-
Recent Posts
Meta
-
Category Archives: Tutorial
Swift Standard Library: Generators, Sequences and Collections
A large part of the Swift Standard Library is concerned with {swift}Generators{/swift}, {swift}Sequences{/swift} and {swift}Collections{/swift} and functions that operate on them, so it’s pretty important to have a good understanding of them. Generators A {swift}Generator{/swift} is anything that conforms to … Continue reading
Posted in Swift, Swift Standard Library, Tutorial
Tagged CollectionType, GeneratorOf, GeneratorType, reverse, SequenceType
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 {swift}import CommonCrypto{/swift}. In this post I will describe three methods that facilitate using {default}CommonCrypto{/default} in Swift and how to choose which method is … Continue reading
Posted in Objective-C, Swift, Tutorial
6 Comments