18 lines
391 B
Objective-C
18 lines
391 B
Objective-C
//
|
|
// KBDirectionIndicatorView.h
|
|
// keyBoard
|
|
//
|
|
// Created by Mac on 2025/11/5.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import <HWPanModal/HWPanModalPresentable.h>
|
|
#import <HWPanModal/HWPanModalIndicatorProtocol.h>
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface KBDirectionIndicatorView : UIView<HWPanModalIndicatorProtocol>
|
|
- (void)applyPresentationState:(PresentationState)state;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|