Hi,
I want to find the index of an item in an array. I need something like this:
let item = Item(title: "Test")
let index : Int = myArray.indexFor(item)
print(index)
Can you help me?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Hi,
I' programming an app, where I want to see "Transactions".
They are saved in Firestore and have a Date, an User and money. I want a list, where the users are sorted in sections by the date. Like:
21/3/2020
User1 11:08 AM
User3 11:07 AM
User2 10:08 AM
Is it possible to do that?