- I wanted to use a scroll view with statically defined content from stack views and other components, but I was having a lot of trouble with warnings and errors from Interface Builder. This helped get me on the right path.
- Ever wanted to present a link within a label? While it’s a much more natural idiom for the web, TTTAttributedLabel is excellent at its job, and highly customizable.
- Here’s a helpful guide on basic tasks with submodules.
- I love this solution for enabling the “next” button on iOS when cycling through textfields.
- I had some difficulty getting a bridging header to work in my project, this guide helped me through it.
- This is a simple but effective tip for scaling a page control (or actually, any control).
- Back to basics: I searched for the most up-to-date method of splitting a string into an array with Swift, and this is what I found.
- If you want even more, Ole Begemann has a prolific guide on strings in Swift.
- I was having a lot of trouble with Swift indices and converting them to Objective-C ranges, eventually I just made everything Objective-C objects all the way down to interact with an API which required ranges.
- Supposedly, boolean values places in arrays in Swift which subsequently get bridged to Objective-C take on their Objective-C object equivalents.
- Apply local CSS to your UIWebViews.