Form
Form copied to clipboard
Issue with info labels not showing if Form never transitions from being disabled to enabled
If Form is presented without changing editing state, info labels will not be shown for textfields.
I've just faced this issue. While debugging I've found that when - (void)showTooltip
get called, self.showTooltips
was set to NO, which cause the info label to not showing.
I've tried to search around NSNotificationCenter
as showTooltips get updated in - (void)showTooltip:(NSNotification *)notification
but with no success.
But a quick fix is to set self.showTooltips = YES;
in - (instancetype)initWithFrame:(CGRect)frame
of FORMTextFieldCell.m
file.
Hope this can help someone :)