April 2015
Intermediate to advanced
556 pages
17h 47m
English
As an example, you will add printing to your RaiseMan app. You will print the name and expected raise for as many people as will fit on the paper size that the user selects from the Print panel (Figure 27.2).
Figure 27.2 Completed application
To do so, you will create a view that does the printing. Instead of making the view big enough to display all the people simultaneously, you will simply note which page the system is printing and draw only the names on that page in drawRect(_:).
Open the RaiseMan project from Chapter 26.
Create a new Cocoa Class file containing a class called EmployeesPrintingView ...