Posts

Post marked as solved
1 Replies
594 Views
In the code below a receive an error "A stored property cannot be named 'description'" . If I change the property "description" to "description1" the error is gone. I'am using Xcode 15b8. Anyone having the same problem import Foundation import SwiftData @Model class Category { var name: String var description: String init(name: String, description: String) { self.name = name self.description = description } }
Posted
by jboersma.
Last updated
.
Post not yet marked as solved
15 Replies
10k Views
After installation of Xcode 9 Beta 3, I receive the message " The operation couldn’t be completed. (Mach error -308 - (ipc/mig) server died)" when I try to run my application on the simulator. Any clue why this error occurs?
Posted
by jboersma.
Last updated
.