DynamicController.h
396 字节
//
// DynamicController.h
// DreamSleep
//
// Created by peter on 2022/9/24.
//
#import <UIKit/UIKit.h>
NS_ASSUME_NONNULL_BEGIN
@protocol DynamicControllerDelegate <NSObject>
- (void)publishSuccessWithData:(id)model;
@end
/// 动态发布页面
@interface DynamicController : UIViewController
@property (nonatomic, weak) id<DynamicControllerDelegate> delegate;
@end
NS_ASSUME_NONNULL_END