Hi,I'm using a UITableViewController to sellect multiple cells.tableView.allowsMultipleSelection = true
tableView.allowsSelectionDuringEditing = trueThis works fine until the user makes a swipe action. A the moment the swipe action start all TableViewCells get deselected. Is there a way to keep selection state?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
I need the timezone of the device for a registration flow. It get's submitted to a backend server.
I setup a device and adjusted the TimeZone to San Francisco and tried the following.
swift
let identifier = TimeZone.current.identifier
The identifier is US/Pacific - looking nice to me.
But the server developer isn't happy about that. He expects the format America/Los_Angeles
I tried to get that fomat but failed, any solution to the issue?