Blame view

ios-examples-13.4.9/Ex_Compound/Compound Example/EMCompoundResourceCell.h 574 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//
//  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