口袋优选

TAAbstractDotView.h 480B

12345678910111213141516171819202122232425
  1. //
  2. // TAAbstractDotView.h
  3. // TAPageControl
  4. //
  5. // Created by Tanguy Aladenise on 2015-01-22.
  6. // Copyright (c) 2015 Tanguy Aladenise. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface TAAbstractDotView : UIView
  10. /**
  11. * A method call let view know which state appearance it should take. Active meaning it's current page. Inactive not the current page.
  12. *
  13. * @param active BOOL to tell if view is active or not
  14. */
  15. - (void)changeActivityState:(BOOL)active;
  16. @end