20 lines
420 B
Objective-C
20 lines
420 B
Objective-C
//
|
|
// PIPageControl.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/10/8.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PIPageControl : UIView
|
|
@property(nonatomic,assign) NSInteger numberOfPages;
|
|
@property(nonatomic,assign) NSInteger currentPage;
|
|
@property(nonatomic,strong) UIColor *currentPageIndicatorTintColor;
|
|
@property(nonatomic,strong) UIColor *pageIndicatorTintColor;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|