//// JTOptionsViewController.h// JobTalk//// Created by Xummer on 14-5-22.// Copyright (c) 2014年 BST. All rights reserved.//#import "ICRBaseViewController.h"#import "JTOptionsEntity.h"@classJTOptionsViewController;@protocolJTOptionsDelegate<NSObject>@optional// From Cell-(void)optionsViewController:(JTOptionsViewController*)optionVCdidChangedSelectedOptions:(JTOptionsEntity*)optionsatBaseIndexPath:(NSIndexPath*)indexP;// From Other-(void)optionsViewController:(JTOptionsViewController*)optionVCdidChangedSelectedOptions:(JTOptionsEntity*)options;@end@interfaceJTOptionsViewController:ICRBaseViewController@property(weak,nonatomic)id<JTOptionsDelegate>optionsDelegate;@property(strong,nonatomic)NSIndexPath*baseCellIndexPath;-(id)initWithOptions:(JTOptionsEntity*)options;@end