20 lines
363 B
Objective-C
20 lines
363 B
Objective-C
//
|
|
// YMMonentsDetailViewControllerDelegate.h
|
|
// YUMI
|
|
//
|
|
// Created by XY on 2023/2/22.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol XPMomentsDetailViewControllerDelegate <NSObject>
|
|
|
|
///删除了动态
|
|
- (void)XPMomentsDetailViewController:(UIViewController *)view deleteMoments:(NSString *)dynamicId;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|