![]() |
QC Native 1.3
the native iOS implementation of
|
#import <QCControlObject.h>
Static Public Member Functions | |
(id) | + handleIt: |
The QCControlObject class is the class from which all Control Objects you create for your stacks inherit. All ValCO, BCO, VCO, and ECO objects must inherit from this class in order to be processed correctly.
Your Control Object that inherits from this class must override the handleIt: method of this class. Your class' handleIt: method must contain all of the functionality for that particular defined behavior. A basic rule to follow is "Each Control Object should do one thing, do it efficiently, and do it well". This is where the modularity of your application is achieved.
+ (id) handleIt: | (NSMutableDictionary *) | parameters |
The handleIt: method to override
parameters | The NSMutableDictionary instance passed into the QuickConnect handleRequest:withParameters: method by your application |