// // JTOptionsViewController.h // JobTalk // // Created by Xummer on 14-5-22. // Copyright (c) 2014年 BST. All rights reserved. // #import "ICRBaseViewController.h" #import "JTOptionsEntity.h" @class JTOptionsViewController; @protocol JTOptionsDelegate @optional // From Cell - (void)optionsViewController:(JTOptionsViewController *)optionVC didChangedSelectedOptions:(JTOptionsEntity *)options atBaseIndexPath:(NSIndexPath *)indexP; // From Other - (void)optionsViewController:(JTOptionsViewController *)optionVC didChangedSelectedOptions:(JTOptionsEntity *)options; @end @interface JTOptionsViewController : ICRBaseViewController @property (weak, nonatomic) id optionsDelegate; @property (strong, nonatomic) NSIndexPath *baseCellIndexPath; - (id)initWithOptions:(JTOptionsEntity *)options; @end