After upgrading to iOS 14 Beta 4, even the example projects won't launch anymore and the CPU is at 100%. I didn't have time to investigate further so I don't know if this is a bug from iOS 14 or Pulley. It worked fine until iOS 14 Beta 3.
Anyway, a short term fix I found is to slightly delay the layout code for Pulley with a good old DispatchQueue.main.asyncAfter(deadline: .now() + 0.1) — which, in my initial testing — seems to resolve the issue. See for an example florianbuerger@ea6c287
Just wanted to leave that here in case anyone else is running into it.
After upgrading to iOS 14 Beta 4, even the example projects won't launch anymore and the CPU is at 100%. I didn't have time to investigate further so I don't know if this is a bug from iOS 14 or Pulley. It worked fine until iOS 14 Beta 3.
Anyway, a short term fix I found is to slightly delay the layout code for Pulley with a good old
DispatchQueue.main.asyncAfter(deadline: .now() + 0.1)— which, in my initial testing — seems to resolve the issue. See for an example florianbuerger@ea6c287Just wanted to leave that here in case anyone else is running into it.