12345678910111213141516171819202122232425 |
- //
- // TAAbstractDotView.h
- // TAPageControl
- //
- // Created by Tanguy Aladenise on 2015-01-22.
- // Copyright (c) 2015 Tanguy Aladenise. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface TAAbstractDotView : UIView
- /**
- * 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
|