Files
yinmeng-ios/xplan-ios/Main/Home/View/SubViews/XPNoteView.h
2021-12-02 20:33:57 +08:00

28 lines
413 B
Objective-C

//
// XPNoteView.h
// xplan-ios
//
// Created by 冯硕 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