// // QuestionDealWithView.h // redstar // // Created by admin on 16/6/5. // Copyright © 2016年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "SelectCategaryViewController.h" @protocol QuestionDealWithDelegate <NSObject> - (void)tableDidSelectAtIndexPath:(NSIndexPath *)indexPath nameArray:(NSArray *)nameArray; // 按钮点击事件 - (void)requestProlemDealWithResultWithGroupText:(NSString *)groupText categoryText:(NSString *)categoryText solutionType:(NSString *)solutionType optionType:(NSString *)optionType; @end @interface QuestionDealWithView : UIView <SelectCategaryDelegate> @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<QuestionDealWithDelegate> delegate; @property (nonatomic, strong) UITextView *titleTextView; @property (nonatomic, strong) UILabel *placeholderLabel1; @end