23 lines
527 B
Objective-C
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
|