我以编程方式使用不同的部分制作tableview。我正在使用此代码请帮助我,我错了。 我必须展示不同的部分,不同的细胞,年份的部分和电影的细胞。
<。>文件中的
{
NSDictionary *movieTitles;
NSArray *years;
}
@property (nonatomic, retain) NSDictionary *movieTitles;
@property (nonatomic, retain) NSArray *years;
<。>文件中的
@synthesize movieTitles;
@synthesize years;
- (void)viewDidLoad {
[super viewDidLoad];
NSString *path = [[NSBundle mainBundle]pathForResource:@"about" ofType:@"plist"];
NSDictionary *dic = [[NSDictionary alloc]initWithContentsOfFile:path];
movieTitles = dic;
aboutTable = [[UITableView alloc]initWithFrame:CGRectMake(20, 50, self.view.frame.size.width - 40, self.view.frame.size.height) style:UITableViewStyleGrouped];
aboutTable.delegate = self;
aboutTable.dataSource = self;
UIButton *backButton = [[UIButton alloc]initWithFrame:CGRectMake(20, 20, 50, 20)];
[backButton addTarget:self action:@selector(backdb) forControlEvents:UIControlEventTouchUpInside];
[backButton setTitle:@"Back" forState:UIControlStateNormal];
[self.view addSubview:backButton];
[self.view addSubview:aboutTable];
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [years count];
}
-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
NSString *details = [years objectAtIndex:section];
NSArray *titleSection = [movieTitles objectForKey:details];
return [titleSection count];
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellidentifier = @"cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellidentifier ];
if(!cell)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellidentifier];
cell.accessoryType = UITableViewCellAccessoryDisclosureIndicator;
}
NSString *details = [years objectAtIndex:[indexPath section]];
NSArray *titleSection = [movieTitles objectForKey:details];
cell.textLabel.text = [titleSection objectAtIndex:[indexPath row]];
return cell;
}
-(NSString *)tableView:(UITableView *)tableView titleForHeaderInSection:(NSInteger)section
{
NSString *details = [years objectAtIndex:section];
return details;
}
答案 0 :(得分:1)
同样在viewDidLoad中,使用以下代码代替movieTitles = dic: -
movieTitles = [dic copy];
答案 1 :(得分:0)
你的“年”价值在哪里。它算得零。你必须分配你的值。首先将对象添加到数组。
e.g。years =[[NSArray alloc]initWithObjects:@"2001",@"2002",@"2003", nil];
答案 2 :(得分:0)
表格视图并未显示,因为这些年份是零和#34;什么时候叫
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return [years count];
}
因为节的数量返回0,所以tableveiw无法添加。
解决此问题。
在 viewDidLoad 方法
中添加此行years = @[@"2015",@"2015"];
答案 3 :(得分:0)
- (void)viewDidLoad {
NSArray *arrYear;
arrYear=[[NSArray alloc]initWithObjects:@"1991",
@"1992",
@"1993",
@"1994",nil]
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *cellIdetifier = [NSString stringWithFormat:@"Cell_%@",indexPath];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdetifier ];
if(!cell)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdetifier];
cell.textLabel.text = [arrYear objectAtIndex:[indexPath row]];
}
return cell;
}
-(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return years.count;
}
答案 4 :(得分:0)
arrYear=[[NSArray alloc]initWithObjects:@"1991",
@"abc",
@"xyz",
@"123",nil]
您必须在didload
中初始化您的数组值