Opened 2 years ago
Closed 2 years ago
#546 closed defect (fixed)
Some Text Fields Don't Get Focus
| Reported by: | mrroundhill | Owned by: | koke |
|---|---|---|---|
| Priority: | minor | Milestone: | 2.6.5 |
| Component: | Other | Version: | 2.6.2 |
| Keywords: | Cc: |
Description
Sometimes you have to tap 2 or 3 times to get the text field to focus in the app. It's a bit annoying :)
Looks like it occurs where we are using text fields within a UITableView
Change History (6)
comment:1 Changed 2 years ago by koke
- Owner set to koke
- Status changed from new to assigned
comment:2 Changed 2 years ago by koke
comment:3 Changed 2 years ago by koke
It's harder than I thought. footerText is updated so we need to reload that.
reloadData causes this issue, and also a glitch on the keyboard hiding and showing again (present also in wpcomlogin)
There are other options like reloadSections:withRowAnimation: but it doesn't seem to update the section title.
Probably our best shot would be to make that footerText a table row and not a title
Or maybe show a warning icon next to the affected field
comment:4 Changed 2 years ago by koke
- Milestone changed from 2.6.3 to 2.6.4
Moving to 2.6.4. It's annoying but not critical
comment:5 Changed 2 years ago by isaackeyet
- Milestone changed from 2.6.4 to 2.6.5
comment:6 Changed 2 years ago by mrroundhill
- Resolution set to fixed
- Status changed from assigned to closed
This issue magically went away, must have been a change someone made somewhere?

Problem is first tap calls textFieldDidEndEditing, which calls [self refreshTable].
I don't think it's safe to remove that :(