Advertisement
Guest User

Untitled

a guest
Jun 16th, 2019
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. MenuViewCell.h
  2.  
  3. @interface MenuViewCell : UITableViewCell
  4. {
  5. NSMutableDictionary *_controls;
  6. }
  7. @property(nonatomic, copy) NSMutableDictionary *controls;
  8.  
  9. MenuViewCell.m
  10.  
  11. @synthesize controls = _controls;
  12.  
  13. - (id)initWithControls:(NSMutableDictionary *)controls
  14. {
  15. self = [super initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"Cell"];
  16. if (self)
  17. {
  18. self.controls = controls;
  19. }
  20. return self;
  21. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement