Попробуйте это
if(indexpath.row == 5) {
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
button.frame = CGRectMake( 0 , 0, 50, 20 );
[button addTarget:self action:@selector(deletePostMethod) forControlEvents:UIControlEventTouchUpInside];
// add some other button properties here
[cell.contentView addSubView:button];
[button release];
}
также вы должны вернуть 6 в numberOfRowsInSection
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return 6;
}