I want to associate a static cell with an action using a storyboard. The problem is that you cannot connect the cell to the action, so I tried it differently. So in my header file, I linked this property to a static cell using a storyboard:
@property (nonatomic, strong) IBOutlet UITableViewCell *theStaticCell;
and
UITableViewCell *theCellClicked = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:1]]; if (theCellClicked == _theStaticCell) { NSLog(@"Static cell clicked"); }
Therefore, I want to use the "Update" cell so that when I click on it, the above code will be executed.

ios objective-c storyboard
user2117204
source share