Hi,
I'm considering using the new SwiftData class inheritance for a new app I'm building. I have a few questions:
- Is it working well enough for production?
- I have a number of different object types in my app. Some of them are very similar, and there's always a balance to be struck when it comes to splitting them into different types using class inheritance. Are there some good advice on when to use multiple classes instead of squeezing my object types into a single class?
- Is there advice against using class inheritance in multiple levels (3-4)?
Claes