Tag: Workflow
All the articles with the tag "Workflow".
-
How to find retain cycles and memory leaks sooner
LifetimeTracker can surface retain cycle / memory issues right as you develop your application, and it will surface them to you immediately, so you can find...
-
Testing iOS Apps
Writing tests in iOS apps is a touchy subject. Not everyone is so privileged to be able to write tests full-time, for different reasons.
-
How hard would it be to adjust your iOS app in real-time?
Iterating over design that needs to be reflected in code can be tedious and time-consuming. Typically the designer works in graphics editing software and...
-
Meta-programming in Swift
Swift has very limited runtime support and no meta-programming features. I created a new tool that changes that, it's called Sourcery
-
Writing Xcode plugin in Swift
I've found myself using Xcode a lot more than I did in Objective-C. One of things I’ve missed a lot from my AppCode setup, is the ability to jump to...
-
Playgrounds for Objective C
Playgrounds are one of the niftiest features of Swift. They allow you to quickly test out bits of code and see results in real time without going through...