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: Swift
Simplifying Autolayout Code with Swift
This evening I found myself staring at a block of Autolayout code, thinking to myself: “There must be a better way”. Of course, the ideal is to do all your Autolayout in Interface Builder, but every now and then there … Continue reading
Posted in Programming, Swift
2 Comments
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
Swift Standard Library: Zip2
There are lots useful of type, functions, protocols and classes in the Swift Standard Library, many of which have little or no documentation. After finding Swifter a website that extracts what little documentation exists, I have been trying to come … Continue reading
Posted in Swift, Tutorial
Leave a comment