1234567891011121314151617181920 |
- //
- // FKPageControl.h
- // FirstLink
- //
- // Created by jack on 15/11/29.
- // Copyright © 2015年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKPageControl : UIView
- @property (nonatomic, assign) NSUInteger numberOfPages;
- @property(nonatomic, assign) NSUInteger currentPage;
- @property(nullable, nonatomic,strong) UIColor *pageIndicatorTintColor;
- @property(nullable, nonatomic,strong) UIColor *currentPageIndicatorTintColor;
- @end
|