I am trying to access the properties of the UITableViewCell of a QuickDialog form.
More specifically, I am trying to access the accessoryView property of a QEntryElement (QDateTimeInlineElement), which is "hidden" in the property list of the object I create.
I am trying to access the cell using
UITableViewCell *thisCell = [dateelement getCellForTableView:self.quickDialogTableView controller:self];
But for some reasons nothing is displayed. I am trying to insert a UIButton in it, like this:
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setTitle:@"=" forState:UIControlStateNormal];
button.frame = CGRectMake(0, 0, 24, 24);
and then thisCell.accessoryView = button;
Am I accessing the property in a wrong way or maybe the button is not created at all? No errors are displayed, but the accessoryView is empty.
Thank you in advance