// // QuestionDealWithView.h // redstar // // Created by admin on 16/6/5. // Copyright © 2016年 ZWF. All rights reserved. // #import #import "SelectCategaryViewController.h" @protocol QuestionDealWithDelegate - (void)tableDidSelectAtIndexPath:(NSIndexPath *)indexPath nameArray:(NSArray *)nameArray; // 按钮点击事件 - (void)requestProlemDealWithResultWithGroupText:(NSString *)groupText categoryText:(NSString *)categoryText solutionType:(NSString *)solutionType optionType:(NSString *)optionType; @end @interface QuestionDealWithView : UIView @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) UIButton *quitBtn; @property (nonatomic, strong) UITableView *tableView; @property (nonatomic, strong) UILabel *groupTitle; @property (nonatomic, strong) UILabel *categoryTitle; @property (nonatomic, assign) id delegate; @property (nonatomic, strong) UITextView *titleTextView; @property (nonatomic, strong) UILabel *placeholderLabel1; @end