I have a UISwitch inside a Custom UITableViewCell and she is showing up on the tableview ok, But I am having trouble getting the value set by the user, because what I am doing it is coming back Null.
I am used to have a TextView inside the Table view and this is how I am used to get its value, but it not working for the UISwitch:
Code:
userCell = [self.tableView cellForRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0]];
NSString *username = userCell.textBox.text;