20 lines
348 B
C
20 lines
348 B
C
|
|
//
|
||
|
|
// THLanternScrollView.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by iOS on 2023/2/14.
|
||
|
|
// Copyright © 2023 CYH. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import "THView.h"
|
||
|
|
|
||
|
|
@interface THLanternScrollView : THView
|
||
|
|
|
||
|
|
@property(nonatomic, strong)UIScrollView *scrollView;
|
||
|
|
|
||
|
|
- (void)starScrollAnimate;
|
||
|
|
|
||
|
|
@property (nonatomic, copy) void(^itemTapBlock)(UIControl *sender);
|
||
|
|
|
||
|
|
@end
|