[ios] Refactor search bars #7236
No reviewers
Labels
No labels
Accessibility
Accessibility
Address
Address
Android
Android
Android Auto
Android Auto
Android Automotive (AAOS)
Android Automotive (AAOS)
API
API
AppGallery
AppGallery
AppStore
AppStore
Battery and Performance
Battery and Performance
Blocker
Blocker
Bookmarks and Tracks
Bookmarks and Tracks
Borders
Borders
Bug
Bug
Build
Build
CarPlay
CarPlay
Classificator
Classificator
Community
Community
Core
Core
CrashReports
CrashReports
Cycling
Cycling
Desktop
Desktop
DevEx
DevEx
DevOps
DevOps
dev_sandbox
dev_sandbox
Directions
Directions
Documentation
Documentation
Downloader
Downloader
Drape
Drape
Driving
Driving
Duplicate
Duplicate
Editor
Editor
Elevation
Elevation
Enhancement
Enhancement
Epic
Epic
External Map Datasets
External Map Datasets
F-Droid
F-Droid
Fonts
Fonts
Frequently User Reported
Frequently User Reported
Fund
Fund
Generator
Generator
Good first issue
Good first issue
Google Play
Google Play
GPS
GPS
GSoC
GSoC
iCloud
iCloud
Icons
Icons
iOS
iOS
Legal
Legal
Linux Desktop
Linux Desktop
Linux packaging
Linux packaging
Linux Phone
Linux Phone
Mac OS
Mac OS
Map Data
Map Data
Metro
Metro
Navigation
Navigation
Need Feedback
Need Feedback
Night Mode
Night Mode
NLnet 2024-06-281
NLnet 2024-06-281
No Feature Parity
No Feature Parity
Opening Hours
Opening Hours
Outdoors
Outdoors
POI Info
POI Info
Privacy
Privacy
Public Transport
Public Transport
Raw Idea
Raw Idea
Refactoring
Refactoring
Regional
Regional
Regression
Regression
Releases
Releases
RoboTest
RoboTest
Route Planning
Route Planning
Routing
Routing
Ruler
Ruler
Search
Search
Security
Security
Styles
Styles
Tests
Tests
Track Recording
Track Recording
Translations
Translations
TTS
TTS
UI
UI
UX
UX
Walk Navigation
Walk Navigation
Watches
Watches
Web
Web
Wikipedia
Wikipedia
Windows
Windows
Won't fix
Won't fix
World Map
World Map
No milestone
No project
No assignees
2 participants
Due date
No due date set.
Dependencies
No dependencies set.
Reference: organicmaps/organicmaps-tmp#7236
Loading…
Add table
Reference in a new issue
No description provided.
Delete branch "ios/refactor-search-bars"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Closes organicmaps/organicmaps#6758
Issue:
There are 3 search bars in ios app now:
And there are no 2 equal search bars.
Moreover, they are used not conventional for ios systems ways.
If you look at the most popular apps in ios (except google's) you will see totally native (in UI) searchbars:





GitHub
Safari
Telegram
Photos
Jira
And they are using native animation which is looks like:

Solution:
So for me, it is a good point to remove all hardcoded non-native elements and behavior to make it more consistent with the system UI/UX so users can feel comfortable when working with the app.
Custom elements that "replace native" in such components as the searchbar are really hard to debug, support, and update in the future.
Apple HIG:
https://developer.apple.com/design/human-interface-guidelines/search-fields
This PR:
UISearchBar
withUISearchController
which integrated inside navigation bar properly (not hardcoded)Result:
iPhone:
iPhoneSE:

iPad:

iPad on macOS:

Dark Theme:


Animations:
There are several ways to work wit searchbar animation:
So now it looks like:
iPhone:



iPad:


Additional UI Bugs are fixed during this PR
bug during animation on download maps page (black row at the top)

bug with layout that causes linens at bottom of Download and Bookmark pages


before:
after:


No, these bugs are different.
This is a good hypothesis! Maybe taps are passing down to the map. But I observed that only the bottom buttons were hidden, while the zoom buttons were still visible on the map. Maybe it hints you where to look or how to reproduce the bug.
Let's merge it as is and make any improvements (if necessary) separately.
@ -30,1 +30,4 @@
control.searchTextField.layer.cornerCurve = .continuous
}
// Default search bar implementation adds the grey transparent image for background. This code removes it and updates the corner radius. This is not working on iPad designed for mac.
Good catch! Thanks for testing it on iOS and on MacOS!