You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.0 KiB

2 years ago
//
// XHBaseTableViewController.h
// MessageDisplayExample
//
// Created by HUAJIE-1 on 14-5-6.
// Copyright (c) 2014年 曾宪华 开发团队(http://iyilunba.com ) 本人QQ:543413507 本人QQ群(142557668). All rights reserved.
//
#import "XHBaseViewController.h"
@interface XHBaseTableViewController : XHBaseViewController <UITableViewDelegate, UITableViewDataSource>
/**
*
*/
@property (nonatomic, strong) UITableView *tableView;
/**
* init的时候设置tableView的样式才有效
*/
@property (nonatomic, assign) UITableViewStyle tableViewStyle;
/**
* iOS7新的功能apitableView的分割线变成iOS6正常的样式
*/
- (void)configuraTableViewNormalSeparatorInset;
/**
* tableView右侧的index title iOS7有白色底色iOS6没有
*
* @param tableView tableView
*/
- (void)configuraSectionIndexBackgroundColorWithTableView:(UITableView *)tableView;
/**
*
*/
- (void)loadDataSource;
@end