Maintaining the MasterProduct information
To maintain information of the MasterProduct, we have to do four tasks:
Develop a View to enter the MasterProduct's information
Develop a MasterProduct's menu to add, delete, and display information of master products
Connect the MasterProduct's menu to the
RootViewController
class (the class that displays the first View when application is launched) so that MasterProduct's menu can be invoked from thereDevelop a View to display and modify the selected MasterProduct's information
To execute these preceding tasks, we need to create four modules:
Module to develop an interface to enter information of the MasterProduct that the vendor deals with
Module to create a menu for manipulating the MasterProduct information. That is, we create buttons that are connected to methods to save, display, and delete MasterProduct's information
Module to connect the MasterProduct's menu to the rest of the project
Module to modify the information of the MasterProduct
For the...