#import "ViewController.h"
#import "MyTableViewCell.h"
@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
{
NSMutableArray *dataArray1;
NSMutableArray *dataArray2;
UITableView *mytableViewLeft;
UITableView *mytableViewRight;
}
@end
@implementation ViewController
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
mytableViewLeft = [[UITableView alloc] initWithFrame:CGRectMake(0, 10, 330, 350) style:UITableViewStylePlain];
[self.view addSubview:mytableViewLeft];
mytableViewLeft.delegate = self;
mytableViewLeft.dataSource = self;
// 定制单元格
[mytableViewLeft registerNib:[UINib nibWithNibName:@"MyTableViewCell" bundle:[NSBundle mainBundle]] forCellReuseIdentifier:@"CELL"];
mytableViewRight = [[UITableView alloc] initWithFrame:CGRectMake(333, 10, 330, 350) style:UITableViewStylePlain];
[self.view addSubview:mytableViewRight];
mytableViewRight.delegate = self;
mytableViewRight.dataSource = self;
[self loadData];
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
if (tableView == mytableViewLeft) {
return dataArray1.count;
}
else{
return dataArray2.count;
}
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
if (tableView == mytableViewLeft) {
return 80;
}
else{
return 40;
}
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
if (tableView == mytableViewLeft) {
MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"CELL" forIndexPath:indexPath];
cell.titleLabel.text = dataArray1[indexPath.row];
return cell;
}
else{
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell2"];
if (!cell) {
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell2"];
}
cell.textLabel.text = dataArray2[indexPath.row];
return cell;
}
}
// 获取数据
- (void) loadData{
if (!dataArray1) {
dataArray1 = [NSMutableArray array];
}
for (int i=0; i<10; i++) {
NSString *str = [NSString stringWithFormat:@"左 %d",i];
[dataArray1 addObject:str];
}
if (!dataArray2) {
dataArray2 = [NSMutableArray array];
}
for (int i=0; i<15; i++) {
NSString *str = [NSString stringWithFormat:@"右 %d",i];
[dataArray2 addObject:str];
}
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
if (tableView == mytableViewLeft) {
NSLog(@"%@",[NSString stringWithFormat:@"左边 第 %ld 行",indexPath.row + 1]);
}
else{
NSLog(@"%@",[NSString stringWithFormat:@"右边 第 %ld 行",indexPath.row + 1]);
}
}
@end
如何在一个视图控制器里添加多个UITableView?
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 成长记录-连载(三十六) ——我的第一篇五千字长文,说了什么,你一定想不到 并不是不想每天写公众号,而是之前思考怎...