我目前使用 Sensible TableView Framework 为新应用创建搜索过滤器掩码。一切正常,但最新的 Screendesign 带来了新问题。
现在需要在最小值和最大值之间选择一个范围。我们现在必须创建一种新类型的自定义 RangeSlider(与 UISliderView 相似),而不是使用两个数字文本字段来定义范围。现在我创建了 RangeSlider(带有两个拇指标记的滑块)作为 CustomClass,没有 xib 文件。我现在必须在我的 tableview 中将其实现为 customCell?仍然无法弄清楚如何通过 STV 做到这一点。
我的 RangeSlider 需要设置一些属性:
- 浮动最小值;
- 浮动最大值;
- 浮动最小范围;
- 浮动选定最小值;
- 浮动选定最大值;
并通过更改属性值来响应用户交互。
简而言之,我的问题:如何在没有 xib 文件的情况下将我的 RangeSlider 类实现为 CustomCell?而且.. 是否也可以使用 SCUserDefaultsDefinition 跟踪我的 customCell 的用户交互?
这就是我创建 STV 的方式:
SCUserDefaultsDefinition *userDefaultsDef = [SCUserDefaultsDefinition definitionWithDictionaryKeyNamesString:@"Search Filter:(gender,ageRangeSlider,zip,country)"];
SCPropertyDefinition *genderDef = [userDefaultsDef propertyDefinitionWithName:@"gender"];
genderDef.title = @"Gender";
genderDef.required = TRUE;
genderDef.type = SCPropertyTypeSelection;
genderDef.attributes = [SCSelectionAttributes attributesWithItems:[NSArray arrayWithObjects:@"f", @"m", nil] allowMultipleSelection:NO allowNoSelection:NO];
genderDef.autoValidate = TRUE;
/*#### CUSTOMCELL IMPLEMENTATION HERE #### */
SCPropertyDefinition *zip = [userDefaultsDef propertyDefinitionWithName:@"zip"];
zip.title = @"Zip-Code";
zip.type = SCPropertyTypeNumericTextField;
zip.attributes = [SCNumericTextFieldAttributes attributesWithMinimumValue:[NSNumber numberWithInt:01] maximumValue:[NSNumber numberWithInt:99] allowFloatValue:NO];
[self.tableViewModel generateSectionsForUserDefaultsDefinition:userDefaultsDef];
SCTableViewSection *formSection = [self.tableViewModel sectionAtIndex:0];
formSection.cellActions.valueChanged = ^(SCTableViewCell *cell, NSIndexPath *indexPath)
{
NSLog(@"\n\n*********** Key Binding Log ***********\n");
NSLog(@"Value: %@\n", [cell boundValue]);
};
如果有人可以提供帮助,那就太好了!我非常感谢!如果您需要更多信息,请告诉我。
谢谢,
拉斯(对不起我的英语不好)