Sometimes it is good to store form data in session – for example when working with filters, when you want to save last filters state when user gets […]
iOS
Posted on:
Quick tip: How to sort array of objects by given property in custom order in Swift?
Imagine this, you have a class and enum like: class UserDto { public var username: String public var userStatus: UserStatusDto } enum UserStatusDto: String { case ok = […]