You can stop Auto refresh canvas via this way:
Editor -> Canvas -> Automatically Refresh Canvas.
Unselect that item will stop refresh preview automatically.
But my Xcode is 16. I'm not sure there is it in Xcode 14.
I'm not sure whether you have solved this problem. I hope I can help you.
Post
Replies
Boosts
Views
Activity
There is some compiling errors in my project. I'm export strings success after fixed those errors.
If you export localization strings failed too, and set use Compiler to Extract Swift Strings is Yes. You need to check compiling error info in the Report Navigator and fixed those error.
You can try this:
enum Kind: String, Codable, CaseIterable, Identifiable {
case credit = "Credit"
var id:String { rawValue }
}
If that not work. I think you need to use SchemaMigrationPlan and translate model to other version model.
There is a example for SchemaMigrationPlan. example.
I hope these will be useful to you.
This is a repeated question, and it has been answered in the link below.
Another question