// // SelectCategaryViewController.h // redstar // // Created by admin on 16/6/6. // Copyright © 2016年 ZWF. All rights reserved. // #import @protocol SelectCategaryDelegate - (void)selectCategaryWithIndexPath:(NSIndexPath *)indexPath rowNum:(NSInteger)rowNum; @end @interface SelectCategaryViewController : UIViewController @property (nonatomic, strong) NSArray *titleArray; @property (nonatomic, strong) NSString *titleStr; @property (nonatomic, assign) NSInteger rowNum; @property (nonatomic, assign) id delegate; @end