Hello,
I just redownloaded the sample project this morning. It's now updated to use the new Observation and builds without failure.
But I'm still having issues with Assert line 204 during reconstruction.
Xcode: Version 15.0 beta 8 (15A5229m)
iPhone 12 Pro Max - iOS 17.0 (21A5291h)
Post
Replies
Boosts
Views
Activity
I figure it out.
The view was having issues laying out because it was square, and dependent on the size of the device. The image was being layout before the cell finished setting up.
Fixed it by using:
override func layoutSubviews() {
super.layoutSubviews()
print("layoutSubviews()")
plotGraph()
}
Hey Quinn,
Thanks for the reply! - That's interesting. All leave things as they are for now, using the code as I outlined, but I'll look into setting them up in Core Data as it's the next thing on my to do list anyways.
Thanks!