// // FavoritesVC.h // shiku_im // // Created by p on 2017/9/14. // Copyright © 2017年 Reese. All rights reserved. // @protocol FavoritesVCDelegate // 发送 - (void) selectFavoritWithString:(NSString *) str; // 删除 - (void) deleteFavoritWithString:(NSString *) str; @end #import @interface FavoritesVC : UIViewController @property (nonatomic, weak) iddelegate; @end