daviddelmonte wrote:
Tarek, is it possible to put the text field in a "frame" or box.. As it is, the user does not know where to tap..
Could you explain how...
Many thanks.
Ways that come to mind right away depend on how the cell is generated but one way is:
...
SCTextFieldCell *tfc = [SCTextFieldCell cellWithText:...];
tfc.borderStyle = UITextBorderStyleLine;
...
or use the delegate method
- (void)tableViewModel:(SCTableViewModel *)tableViewModel willConfigureCell:(SCTableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
if ([cell isKindOfClass:[SCTextFieldCell class]]) {
((SCTextFieldCell*)cell).textField.borderStyle = UITextBorderStyleLine;
}
}