// // EMCompoundResourceCell.h // Compound Example // // Created by Dexter Weiss on 12/17/13. // Copyright (c) 2013 Emmoco. All rights reserved. // #import @protocol EMCompoundResourceCellDelegate -(void)cellDidProcessEditing:(NSDictionary *)dictionary forIndex:(NSUInteger)index; @end @interface EMCompoundResourceCell : UITableViewCell @property (nonatomic, strong) NSDictionary *compoundResourceValue; @property (nonatomic, unsafe_unretained) id delegate; @property (nonatomic) NSUInteger index; @end