Making Your Classes Talk to Each Other, Part 3
This is the third part of a three-part tutorial for beginning iOS programmers on how to make classes, especially view controllers, communicate with each other. See also Part 1 and Part 2.
Version 7: Refinements
In this chapter we’ll make some refinements to the code and implement missing features.
First, I will show you a little trick. Did you know you can create objects of any kind using Interface Builder, not just views? We can use that to our advantage and save on some code in the application delegate. In the last chapter we added several new properties in order to be able to hook up the DataModel object to both our view controllers. Well, we can do all of that inside Interface Builder without having to write any code! Continue reading…

Matthijs Hollemans