12345678910111213141516171819 |
- //
- // LDTodayNewsView.h
- // YouHuiProject
- //
- // Created by 小花 on 2018/12/10.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface LDTodayNewsView : UIView
- @property (nonatomic , copy) void (^clickMessage)(NSInteger index);
- - (void)setDataList:(NSArray *)list;
- @end
- NS_ASSUME_NONNULL_END
|