// // AnswerViewController.h // Lighting // // Created by 曹云霄 on 2016/12/7. // Copyright © 2016年 上海勾芒科技有限公司. All rights reserved. // #import "BaseViewController.h" /** 取消、完成代理 */ @protocol DismissDelegate @optional /** 取消 */ - (void)dismissController:(BOOL)animationed; /** 闯关完成 */ - (void)emigratedFinish:(NSString *)passResult; @end @interface AnswerViewController : BaseViewController @property (nonatomic,weak) iddelegate; @property (weak, nonatomic) IBOutlet UITableView *answerTableView; /** 闯关任务ID */ @property (nonatomic,copy) TOPassLevelEntity *entity; @end