TiProxyDelegate Protocol Reference
Conforms to | NSObject |
Declared in | TiProxy.h |
Tasks
-
– propertyChanged:oldValue:newValue:proxy:
Tells the delegate that the proxy property has changed.
required method -
– readProxyValuesWithKeys:
Tells the delegate to read proxy values.
-
– listenerAdded:count:
Tells the delegate that a listener has been added to the proxy.
-
– listenerRemoved:count:
Tells the delegate that a listener has been removed to the proxy.
-
– detachProxy
Tells the delegate to detach from proxy.
Instance Methods
listenerAdded:count:
Tells the delegate that a listener has been added to the proxy.
- (void)listenerAdded:(NSString *)type count:(int)count
Parameters
- type
The listener type.
- count
The current number of active listeners
Declared In
TiProxy.h
listenerRemoved:count:
Tells the delegate that a listener has been removed to the proxy.
- (void)listenerRemoved:(NSString *)type count:(int)count
Parameters
- type
The listener type.
- count
The current number of active listeners after the remove
Declared In
TiProxy.h
propertyChanged:oldValue:newValue:proxy:
Tells the delegate that the proxy property has changed.
- (void)propertyChanged:(NSString *)key oldValue:(id)oldValue newValue:(id)newValue proxy:(TiProxy *)proxy
Parameters
- key
The property name.
- oldValue
An old value of the property.
- newValue
A new value of the property.
- proxy
The proxy where the property has changed.
Declared In
TiProxy.h