6 comments found.
would the locations be able to be saved to a central map that users can view all others saved locations?
I am interested in customized system. Share me your contact no or whatsapp no or Skype I’d?
You can reach me on ecumangmodi@gmail.com
Where is the location data saved ?
It is saved in local database which is coredata
Hello, you should add download offline map option.
Okay i will.
You have error on statusBar Thread 1: Exception: “App called -statusBar or -statusBarWindow on UIApplication: this code must be changed as there’s no longer a status bar or status bar window. Use the statusBarManager object on the window scene instead.”
- Remove this line from app delegate method didfinishlaunchingwithoptions:
UIApplication.shared.statusBarView?.backgroundColor = UIColor.red
- Add below code there:
if #available(iOS 13.0, *) { let statusBar = UIView(frame: UIApplication.shared.keyWindow?.windowScene?.statusBarManager?.statusBarFrame ?? CGRect.zero) statusBar.backgroundColor = UIColor.red UIApplication.shared.keyWindow?.addSubview(statusBar) } else { UIApplication.shared.statusBarView?.backgroundColor = UIColor.red }
Let me know if you get any issue, i am happy to help you!
Ok I did that but still getting the same error when you click on the “hamburger” menu button on the left top
“Thread 1: Exception: “App called -statusBar or -statusBarWindow on UIApplication: this code must be changed as there’s no longer a status bar or status bar window. Use the statusBarManager object on the window scene instead.”
Give me your email id, i’ll resolve that issue and will send you code .
Ok I messaged you through here with my email address… Thanks for your help!
Okay got it , i am sending you working code there.
Congratulations, Nice Work, GLWS 
Thanks