AnswerViewController.h 659 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
//
//  AnswerViewController.h
//  Lighting
//
//  Created by 曹云霄 on 2016/12/7.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"

11 12


13 14 15
/**
 取消、完成代理
 */
曹云霄's avatar
曹云霄 committed
16
@protocol DismissDelegate <NSObject>
17 18


曹云霄's avatar
曹云霄 committed
19
@optional
20 21 22 23

/**
 取消
 */
24
- (void)dismissController:(BOOL)animationed;
曹云霄's avatar
曹云霄 committed
25

26 27 28 29 30
/**
 闯关完成
 */
- (void)emigratedFinish;

曹云霄's avatar
曹云霄 committed
31
@end
32

33

曹云霄's avatar
曹云霄 committed
34
@interface AnswerViewController : BaseViewController
35

曹云霄's avatar
曹云霄 committed
36
@property (nonatomic,weak) id<DismissDelegate>delegate;
37 38 39 40 41 42 43
@property (weak, nonatomic) IBOutlet UITableView *answerTableView;

/**
 闯关任务ID
 */
@property (nonatomic,copy) NSString *passLevelId;

44 45


46
@end