// // HWAddFolderViewController.h // // // Created by yhw on 2022/3/24. // #import NS_ASSUME_NONNULL_BEGIN @protocol HWAddFolderViewControllerDelegate @optional - (void)addFolderWithName:(NSString *)name; @end @interface HWAddFolderViewController : UIViewController @property (weak,nonatomic) id delegate; @end NS_ASSUME_NONNULL_END