Form icon indicating copy to clipboard operation
Form copied to clipboard

Issue with info labels not showing if Form never transitions from being disabled to enabled

Open zenangst opened this issue 9 years ago • 1 comments

If Form is presented without changing editing state, info labels will not be shown for textfields.

zenangst avatar Apr 20 '15 13:04 zenangst

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 :)

AnthoPakPak avatar Apr 20 '18 10:04 AnthoPakPak