我对 xlform 很陌生。我知道已经有很多模板单元格。有没有一种简单的方法可以将自定义单元格添加到行中?例如,我用图像制作了用户单元格,我想将此单元格添加到第一部分。更好的方法是什么?
这是我的代码:
XLFormDescriptor * form;
XLFormSectionDescriptor * section;
XLFormRowDescriptor * row;
form = [XLFormDescriptor formDescriptorWithTitle:@"Settings"];
// First section
section = [XLFormSectionDescriptor formSectionWithTitle:@"Account"];
[form addFormSection:section];
// User image
row = [[XLFormRowDescriptor alloc] init];
[section addFormRow:row];
// Is there a way to hook the customized UserCell with row together here?
我为此创建了一个 UserCell,但是如何将自定义单元格添加到该行中?
非常感谢任何帮助和建议。