Module to modify the information of the master product
This module will display the information of the selected master product and will allow us to modify its contents (product name, quantity, price, and its image).
The following are the steps involved in developing this module:
1. Adding the
View Controller
class:EditMasterProductController
to display the view to modify the selected master product.2. Defining the outlets and action methods in the header file:
EditMasterProductController.h
.3. Designing the View of the
EditMasterProductController
class.4. Coding in the implementation file:
EditMasterProductController.m
to modify the master product's information.5. Importing the delegate and the
View Controller
class,EditMasterProductController
in the MasterProductInfoController's header file.6. Coding in the implementation file,
MasterProductInfoController.m
to invoke the View of theEditMasterProductController
class.