23 lines
467 B
Objective-C
23 lines
467 B
Objective-C
//
|
|
// LXPageControl.h
|
|
// GIGA
|
|
//
|
|
// Created by lianxiang on 2018/10/8.
|
|
// Copyright © 2018年 com.giga.ios. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface LXPageControl : UIView
|
|
|
|
@property (nonatomic, assign) NSInteger numberOfPages;
|
|
@property (nonatomic, assign) NSInteger currentPage;
|
|
@property (nonatomic, strong) UIColor *tintColor;
|
|
@property (nonatomic, strong) UIColor *currentTintColor;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|