Imagine you have a structure like:
[[String, String], [String, String], [String, String],]
and you need to replace a second value. How to do that?
Imagine you have a structure like:
[[String, String], [String, String], [String, String],]
and you need to replace a second value. How to do that?
At some point your app may need lot of supported languages, which sooner or later will come to common problem – each translation change requires app release via AppStore, which takes at least a day. Of course, there are many commercial solution, some pretty expensive. But is there any free way?
After updating to iOS 15, probably you (like me) noticed some strange colors in your customized UINavigationBar. To fix this you need to add some code which works only in iOS 13 and above:
if #available(iOS 13.0, *) { let appearance = UINavigationBarAppearance() appearance.configureWithOpaqueBackground() appearance.backgroundColor = UIColor.green navigationBar.standardAppearance = appearance navigationBar.scrollEdgeAppearance = navigationBar.standardAppearance }
If your app supports only iOS 13 and above, of course you can remove #available check.
If you are quite new in Swift, sooner or later you will face such view hierarchy:Continue reading
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 back to page. But if your form has Entity type in choice field, you will see error like:
“Entity of type XXX passed to the choice field must be managed. Maybe you forget to persist it in the entity manager?”
How to deal with this? Read below.Continue reading
Imagine this, you have a class and enum like:
class UserDto { public var username: String public var userStatus: UserStatusDto } enum UserStatusDto: String { case ok = "Ok" case error = "Error" }
and you want to sort users by their status, but users with error first. How to do that? Continue reading
As you probably already know, sending push notification from Firebase will not display attached image on device. This example assumes you know how to configure push notifications in your app with Firebase. So let’s start.Continue reading
Ever needed to create your very own custom button in Salesforce? If yes, read below.Continue reading
Ever wanted to install pnctl extension for Mamp PRO on Catalina in 16 easy steps? If yes, read below.Continue reading
Ever wanted to fetch your entities using complex query from inside you form class? Check out below.Continue reading