DailyBgView.h
329 字节
//
// DailyBgView.h
// DreamSleep
//
// Created by peter on 2022/6/8.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
/// 每日任务背景视图
@interface DailyBgView : UIView
/// 更新头部今日积分数据
/// @param points 今日积分数
- (void)updateTodayPointData:(int)points;
@end
NS_ASSUME_NONNULL_END