I\'m trying to add a custom delegate to a custom UITableViewCell of mine.
On this cell I have a button which need to fire a method in the ViewController where the UI
At first your interface called MyTableViewCell, implementation - iPadCheckTableViewCell. I think both should have the same name.
And create button like this:
self.myButton = [UIButton buttonWithType:UIButtonTypeCustom]; // instead of self.myButton = [[UIButton alloc] init]; - it's a memory leak