Help me!私はセクションtableviewsにセルを挿入することができません!テーブルビューのセルとセクションを挿入する
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView{
NSInteger result = 0;
result = [[_dictionoryOfDay allKeys] count];
return result;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{
NSInteger result = 0;
NSString *sectionNameInDictionary = [[_dictionoryOfDay allKeys]
objectAtIndex:section];
NSArray *sectionArray = [_dictionoryOfDay objectForKey:
sectionNameInDictionary];
result = [sectionArray count];
return result;
}
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
UICustomTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cellMain" forIndexPath:indexPath];
[cell.btnAddMore addTarget:self action:@selector(actionAddMore:)forControlEvents:UIControlEventTouchUpInside];
cell.btnAddMore.tag = indexPath.section;
return cell;
}
-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
TableHeaderAvailabel *header;
if(!header){
header = [tableView dequeueReusableHeaderFooterViewWithIdentifier:@"TableHeaderAvailabel"];
}
NSString *result = nil;
result = [[self.dictionoryOfDay allKeys] objectAtIndex:section];
header.lbTitle.text = result;
return header;
}
-(void)actionAddMore:(UIButton *)sender{
}
のようになります。あなたのコードを少しは良く理解できるように、あなたの質問を再フォーマットできますか? 「ヘルプ」テキストを使用して、コードを適切なMarkdownフォーマットで囲む方法を示します。また、問題を解決しようとしたことを示してください。 – fsb
あなたの問題は何ですか? 'actionAddMore'が空の行/セクションを挿入しているコードはどこですか? – HardikDG
image:http://i.stack.imgur.com/lJNTE.jpg –