1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
| //
| // 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
|
|