我正在尝试访问 QuickDialog 表单的 UITableViewCell 的属性。
更具体地说,我正在尝试访问 QEntryElement (QDateTimeInlineElement) 的附件视图属性,该属性“隐藏”在我创建的对象的属性列表中。
我正在尝试使用
UITableViewCell *thisCell = [dateelement getCellForTableView:self.quickDialogTableView controller:self];
但由于某些原因,没有显示任何内容。我正在尝试在其中插入一个 UIButton,如下所示:
UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
[button setTitle:@"=" forState:UIControlStateNormal];
button.frame = CGRectMake(0, 0, 24, 24);
然后 thisCell.accessoryView = button;
我是否以错误的方式访问该属性,或者根本没有创建按钮?没有显示错误,但附件视图为空。
先感谢您