FWDotViewProtocol
@protocol FWDotViewProtocol <NSObject>
@required
/**
* A method call let view know which state appearance it should take. Active meaning it's current page. Inactive not the current page.
*
* @param active BOOL to tell if view is active or not
*/
- (void)changeActivityState:(BOOL)active;
@end
Undocumented
-
A method call let view know which state appearance it should take. Active meaning it’s current page. Inactive not the current page.
Declaration
Objective-C
- (void)changeActivityState:(BOOL)active;
Parameters
active
BOOL to tell if view is active or not