Resilient deserialization in swift
Feb 4, 2020, 3:26 PM
You probably send or receive data over the network in your apps. You probably use Encodable and Decodable protocols to do that job. You have probably already been confronted with parsing errors because your backend is not available to...
TableView Datasource with SwiftUI-style syntax
Oct 2, 2019, 12:28 PM
UITableView Datasource with SwiftUI-style syntaxPhoto by Messala Ciulla on UnsplashIntroductionSwiftUI seems to be great but unfortunately developers will be able to use it only if they target their app on ios13.But SwiftUI is built on top...
Create your own UICollectionView API
Mar 5, 2019, 3:36 AM
In this article, we will create an external framework that will expose some cells, a background and horizontal line decorationViews and one vertical custom UICollectionViewFlowLayout that manages margins and paddings between cells.The app...
Troisix — the hungry Ogre (media kit)
Sep 5, 2018, 2:53 AM
Have you ever played Chromino ? I did with my family and while I was playing, I got the idea to create Troisix. Three years later, I’m proud to release it and I hope you will have as much fun playing it as I had developing it.GwennWhat’s...
UICollectionView: How to easily deal with updates
Nov 24, 2017, 5:15 AM
Photo by Jessica Ruscello on UnsplashWhen you are using CollectionViews or TableViews, the difficult part is when you need to add, remove, move some cells or update their content.Even more when you are using decoration...
Collor: a MVVM data-oriented framework for UICollectionView
Aug 29, 2017, 4:33 AM
The problemAt oui.sncf, the main app for booking train tickets in France and Europe, our main job is to display what the server sends to us, most of views are also dynamic. Furthermore, the app is often updated with new features, even...