Files
peko-ios/YuMi/Modules/YMNewHome/View/CustomView/XPNoteView.h
2023-07-14 18:50:55 +08:00

28 lines
406 B
Objective-C

//
// YMNoteView.h
// YUMI
//
// Created by YUMI on 2021/11/29.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@interface XPNoteView : UIView
///开始动画
- (void)startAnimation;
///结束动画
- (void) stopAnimation;
///柱子的宽度
@property (assign, nonatomic) CGFloat pillarWidth;
///柱子的颜色
@property (strong, nonatomic) UIColor * pillarColor;
@end
NS_ASSUME_NONNULL_END