Heim > Fragen und Antworten > Hauptteil
在Xlform库中,作者已经写好的各种各类的cell,左边的标题控件都是左对齐,右边的控件都是右对齐的。但是我现在需要右边的控件也要左对齐,如下图:
我所用到的cell代码为:
row = [XLFormRowDescriptor formRowDescriptorWithTag:kBirthday rowType:XLFormRowDescriptorTypeDate title:@"生日"];
[row.cellConfig setObject:[UIColor blackColor] forKey:@"detailTextLabel.textColor"];
row.value = [NSDate intervalToDate:userInfo.birthday.floatValue/1000 format:@"yyyy-MM-dd"];
[section addFormRow:row];
我已经对日期的显示框(detailTextLabel)做了文字颜色的处理,但是我不知道如何对它做位置的设置。请各位大神赐教,谢谢!!