// // UIImageViewDeletable.h // linphone // // Created by benjamin_verdier on 28/06/2018. // #import @protocol UIImageViewDeletableDelegate @required - (void)deleteImageWithAssetId:(NSString *)assetId; @end @interface UIImageViewDeletable : UICollectionViewCell @property NSString *assetId; @property(nonatomic, strong) id deleteDelegate; @property (weak, nonatomic) IBOutlet UIImageView *image; - (IBAction)onDeletePressed; @end