Nenhuma Descrição

FKPageControl.h 459B

1234567891011121314151617181920
  1. //
  2. // FKPageControl.h
  3. // FirstLink
  4. //
  5. // Created by jack on 15/11/29.
  6. // Copyright © 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface FKPageControl : UIView
  10. @property (nonatomic, assign) NSUInteger numberOfPages;
  11. @property(nonatomic, assign) NSUInteger currentPage;
  12. @property(nullable, nonatomic,strong) UIColor *pageIndicatorTintColor;
  13. @property(nullable, nonatomic,strong) UIColor *currentPageIndicatorTintColor;
  14. @end