Files
yinmeng-ios/xplan-ios/Main/Home/View/Cell/XPHomeLikeEmptyTableViewCell.h
2022-03-04 19:54:17 +08:00

23 lines
527 B
Objective-C

//
// XPHomeLikeTableViewCell.h
// xplan-ios
//
// Created by 冯硕 on 2022/3/3.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@class XPHomeLikeEmptyTableViewCell;
@protocol XPHomeLikeEmptyTableViewCellDelegate <NSObject>
- (void)xPHomeLikeEmptyTableViewCell:(XPHomeLikeEmptyTableViewCell *)view didClickFriendChat:(UIButton *)sender;
@end
@interface XPHomeLikeEmptyTableViewCell : UITableViewCell
///代理
@property (nonatomic,weak) id<XPHomeLikeEmptyTableViewCellDelegate> delegate;
@end
NS_ASSUME_NONNULL_END