| 123456789101112131415161718192021222324252627282930313233343536 |
- //
- // QuizSetViewController.h
- // OneCable
- //
- // Created by nComz on 2017. 5. 19..
- // Copyright © 2017년 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomTextField;
- @class CustomLabel;
- @class CustomButton;
- @protocol dismissQuizViewDelegate <NSObject>
- - (void) dismissQuizView;
- @end
- @interface QuizSetViewController : JDViewController
- @property (weak, nonatomic) IBOutlet CustomTextField *txtQuizSelect; // 퀴즈 선택
- @property (weak, nonatomic) IBOutlet CustomTextField *txtSelfQuiz; // 퀴즈 질문 작성
- @property (weak, nonatomic) IBOutlet CustomButton *btnInputQuizAnswer; // 퀴즈 정답 버튼
- @property (weak, nonatomic) IBOutlet UIView *viewSelfQuiz;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight;
- @property (weak, nonatomic) IBOutlet CustomButton *btnCancel;
- @property (weak, nonatomic) IBOutlet CustomButton *btnConfirm;
- @property (weak, nonatomic) id <dismissQuizViewDelegate> delegate;
- @end
|