SOPTableView.h 529 Bytes
//
//  SOPTableView.h
//  redstar
//
//  Created by admin on 15/12/25.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>

@protocol SOPTableViewDelegate <NSObject>

- (void)selectRowWithDetailRow:(NSInteger )row;

@end

@interface SOPTableView : UITableView

@property (nonatomic, assign) id <SOPTableViewDelegate> sop_delegate;
- (instancetype)initWithFrame:(CGRect)frame style:(UITableViewStyle)style titleArray:(NSArray *)titleArray;
- (instancetype)initWithTitleArray:(NSArray *)titleArray;
@end