Hacker News new | ask | show | jobs
by hobonumber1 5016 days ago
Do you guys use the interface builder or is this all programmatic (the initial view setup, not the updates).
1 comments

All the cool stuff is fully programmatic. I think right now it's just the onboarding screens that are still using interface builder - they're simple and mostly remain static.

One lesson though: do not use interface builder for table view cells, just don't. Cell reuse is tricky to get right as is and you should take the time upfront to make it all work programmatically.

Exactly, there is just generally no need for it. It can be ok for prototyping because of the easy autolayout flags but at the end it just made sense to do the cells programmatically.
Sweet, thanks for the advice. I assume you mean don't have an IB file for your UITableViewCell subclass?