// // HWAddFolderViewController.h // Private-X // // Created by 余衡武 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