onConfigurationChange:value:(NSInteger, id) method

Called when there are client configuration property state changes, from the underlying layer.

Syntax

public virtual void onConfigurationChange:value: (NSInteger iPropertyID, id oValue)

Usage

                 
 Usage

 -(void)onConfigurationChange:(NSInteger)iPropertyID  value:(id)oValue
{
     NSLog("--d---%@---", iPropertyID, oValue);
     if(iPropertyID==kCustResourceBundlePropID)
{
     //Handle customization resource bundle
}
}