Ios UITableView节标题可单击委托不调用

Ios UITableView节标题可单击委托不调用,ios,uitableview,delegates,xcode-storyboard,sectionheader,Ios,Uitableview,Delegates,Xcode Storyboard,Sectionheader,我是ios开发新手。我在故事板中创建应用程序,最初是UItableviewController,带有一个原型单元,带有按钮和标签。按钮在其UItableViewCell类中具有iAction方法,该类具有对UItableviewController的委托,未调用委托方法。但剖面图中的图像正在更改。我在这里发布我的完整代码 ContactHeaderViewCell.h ContactTableViewController.m ContactTableViewController.m 提前感谢。您

我是ios开发新手。我在故事板中创建应用程序,最初是UItableviewController,带有一个原型单元,带有按钮和标签。按钮在其UItableViewCell类中具有iAction方法,该类具有对UItableviewController的委托,未调用委托方法。但剖面图中的图像正在更改。我在这里发布我的完整代码

ContactHeaderViewCell.h

ContactTableViewController.m

ContactTableViewController.m

提前感谢。

您必须添加此行 [HeaderView setHeaderDelegate:self]; 在方法上:
-UIView*tableView:UITableView*表头的tableView视图Section:NSIntegersection

这就是工作。谢谢但SectionHeader图像不会更改。。为什么?
@protocol SectionClick;
@protocol SectionClick <NSObject>
@optional
- (void) TickCheckbox : (NSInteger) section;
- (void) UnTickCheckbox : (NSInteger) section;
@end
@interface ContactHeaderViewCell : UITableViewCell
{
id<SectionClick> HeaderDelegate;
}

@property (strong, nonatomic) IBOutlet UILabel *lblName;
@property (strong, nonatomic) IBOutlet UIButton *btnCheckBox;
@property (strong, nonatomic) IBOutlet UIButton *btnArrow;
- (IBAction)btnCheckBox_click:(id)sender;
- (IBAction)btnArrow_Click:(id)sender;


@property (nonatomic, strong) id<SectionClick> HeaderDelegate;
@property (nonatomic) NSInteger section;
- (void) setDelegate:(id)delegate;

@end'
@implementation ContactHeaderViewCell

@synthesize HeaderDelegate,section;
 - (void) setDelegate:(id)delegate
{
self.HeaderDelegate = delegate;
}
- (void)awakeFromNib {
// Initialization code
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
[super setSelected:selected animated:animated];

// Configure the view for the selected state
}

- (IBAction)btnCheckBox_click:(id)sender {
self.btnCheckBox.selected = !self.btnCheckBox.selected;

if (self.btnCheckBox.selected)
{
    if ([self.HeaderDelegate respondsToSelector:@selector(UnTickCheckbox:)])
    {
        [self.HeaderDelegate UnTickCheckbox:self.section];
    }
} else
{
    if ([self.HeaderDelegate respondsToSelector:@selector(TickCheckbox:)])
    {
        [self.HeaderDelegate TickCheckbox:self.section];
    }
}
}
#import "ContactDetail.h"
#import "ContactHeaderViewCell.h"

@interface ContactTableViewController : UITableViewController<SectionClick>
@property(nonatomic) ContactDetail *contacts;
@property(nonatomic) NSMutableArray *ContactList;
@end
#import "ContactTableViewController.h"
#import <AddressBook/AddressBook.h>
#import "ContactHeaderViewCell.h"
#import "UserDetailViewCell.h"

@interface ContactTableViewController ()

@end

@implementation ContactTableViewController

- (id)initWithStyle:(UITableViewStyle)style
{
    self = [super initWithStyle:style];
    if (self) {
    }
    return self;
}
- (void)viewDidLoad {
    [self ArrayContactFunc];
    [super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
}

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
    return [self.ContactList count];
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    self.contacts =(self.ContactList)[section];
    return (self.contacts.Isopen) ? [self.contacts.mobileNumbers count] : 0;
}

-(UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
    static NSString *HeaderIdentifier = @"HeaderCell";
    self.contacts = (self.ContactList)[section];
    ContactHeaderViewCell *HeaderView = (ContactHeaderViewCell *)[self.tableView dequeueReusableCellWithIdentifier:HeaderIdentifier];
    if (HeaderView == nil){
        [NSException raise:@"headerView == nil.." format:@"No cells with matching CellIdentifier loaded from your storyboard"];
            }
    HeaderView.lblName.text = self.contacts.fullName;
        if(self.contacts.IsChecked)
        {
            [HeaderView.btnCheckBox setImage:[UIImage imageNamed:@"Unchecked.png"] forState:UIControlStateSelected];
        }
        else
        {
            [HeaderView.btnCheckBox setImage:[UIImage imageNamed:@"Checked.png"] forState:UIControlStateSelected];
        }
    return HeaderView;
}

- (UITableViewCell *)cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    self.contacts = (self.ContactList)[indexPath.section];
    static NSString *DetailCellIdentifier = @"DetailCell";
    UserDetailViewCell *cell = [self.tableView dequeueReusableCellWithIdentifier:DetailCellIdentifier];
    if(!cell)
    {
         [NSException raise:@"headerView == nil.." format:@"No cells with matching CellIdentifier loaded from your storyboard"];
    }

    cell.lblDetail.text = (self.contacts.mobileNumbers)[indexPath.row];
    return cell;
}

- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
    return 60.0;
}
-(void)UnTickCheckbox:(NSInteger)section
{
//    self.contacts = (self.ContactList)[section];
//    self.contacts.IsChecked = NO;
//    [self.tableView reloadData];
}

-(void)TickCheckbox:(NSInteger)section
{
//    self.contacts = (self.ContactList)[section];
//    self.contacts.IsChecked = YES;
//    [self.tableView reloadData];
}