//
// SelectCategaryViewController.h
// redstar
//
// Created by admin on 16/6/6.
// Copyright © 2016年 ZWF. All rights reserved.
//
#import <UIKit/UIKit.h>
@protocol SelectCategaryDelegate <NSObject>
- (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 <SelectCategaryDelegate> delegate;
@end
-
admin authored0b955368