31 lines
660 B
Objective-C
31 lines
660 B
Objective-C
//
|
|
// QXSkyPraizeView.h
|
|
// QXLive
|
|
//
|
|
// Created by 启星 on 2025/8/16.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface QXSkyPraizeView : UIView
|
|
-(void)showInView:(UIView *)view;
|
|
@end
|
|
|
|
|
|
@interface QXSkyPraizeSubView :UIView
|
|
@property (nonatomic,strong)UIView *bgView;
|
|
@property (nonatomic,strong)UIImageView *bgImageView;
|
|
@property (nonatomic,strong)UIImageView *giftImageView;
|
|
@property (nonatomic,strong)UILabel *titleLabel;
|
|
@property (nonatomic,strong)UIButton *giftCoin;
|
|
|
|
@property (nonatomic,assign)BOOL isSelected;
|
|
|
|
- (void)startPulseAnimationWithLayer;
|
|
// 停止动画
|
|
- (void)stopPulseAnimationWithLayer;
|
|
@end
|
|
NS_ASSUME_NONNULL_END
|