//
// ViewController.m
// ios-TabelView
//
// Created by ma c on 15/8/28.
// Copyright (c) 2015年 sxt. All rights reserved.
//
@interface ViewController ()
@property (weak, nonatomic) IBOutlet UITableView *tabelView;
@end
@implementation ViewController
(void)viewDidLoad {
[super viewDidLoad];
// self.view.backgroundColor = [UIColor whiteColor];
//设置数据源的两种方法
//1·代码设置
//2·拖线
self.tabelView.dataSource = self;
self.view.backgroundColor = [UIColor whiteColor];
}
return YES;
}
/**
有两组
*/
{
return 2;
}
{
// NSLog(@"numberOfRowsInSection-%d", section);
/**从上面可知,有两组,所有由这里判断,第0组有三行,第二组有四行*/
if (section == 0) {
return 2;
} else {
return 2;
}
}
{
/**每组里面的每一行显示的内容*/
UITableViewCell *cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:nil];
if(indexPath.section == 0) //第一组--两行
{
if(indexPath.row==0)
cell.textLabel.text = @"奥迪";
else if(indexPath.row==1)
cell.textLabel.text =@"奔驰";
}else if(indexPath.section == 1)
{
if (indexPath.row == 0) {
cell.textLabel.text = @"法拉利";
}else if (indexPath.row == 1)
cell.textLabel.text = @"兰博基尼";
}
return cell;
}
/*显示section组的头部标题/
{
if(section == 0)
return @"德系轿车";
else
return @"英系轿车";
}
/*显示section的尾部标题/
{
if (section == 0) {
return @"宇宙第一品牌";
}else
return @"牛哄哄";
}
{
NSLog(@"哈哈");
Second *se = [[Second alloc]init];
[self.navigationController pushViewController:se animated:YES];
}
@end
我的需求是实现点击行 跳转到second上面去 ,second是继承UIViewController的,但是跳不过去是怎么回事,代理已经构建完成,拖的线???? 我还是ios菜鸟求解释!!!!! 急急急!!!!!
你外面有uinavigationcontroller吗?
self.tableView.delegate = self;+上
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。