I needed to ask if anybody can level to documentation adjustments with XCode for Xcode 15.01 operating iOS 17 “PREVIEW” simulators.
This code:
Textual content("Budgeted Particulars for (categoryRecord.class)")
which is knowledge retrieved from FMDB which returns an OPTIONAL used to work simply superb in my preview.
Now it crashes within the XCode PREVIEW and the error is:
app “crashed attributable to implicitly unwrapped optionally available in BudgetedIncomeDetailForCategoryView.swift at line 43.”
The repair is easy:
Textual content("Budgeted Particulars for (categoryRecord.class ?? " " )")
I simply do not recall seeing this modification being reported wherever?
The fascinating factor for me is that the code as written runs superb within the run simulator and likewise when put in on my iPad.
It is just the preview simulator the place this crash happens.
Bug or characteristic??