EMCompoundResourceCell.h 574 Bytes
//
//  EMCompoundResourceCell.h
//  Compound Example
//
//  Created by Dexter Weiss on 12/17/13.
//  Copyright (c) 2013 Emmoco. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol EMCompoundResourceCellDelegate <NSObject>

-(void)cellDidProcessEditing:(NSDictionary *)dictionary forIndex:(NSUInteger)index;

@end

@interface EMCompoundResourceCell : UITableViewCell

@property (nonatomic, strong) NSDictionary *compoundResourceValue;
@property (nonatomic, unsafe_unretained) id<EMCompoundResourceCellDelegate> delegate;
@property (nonatomic) NSUInteger index;

@end