Adam Tow

Results 10 comments of Adam Tow

I'd second the singleton controller. I've seen the reinitialization of the Pipify controller in my app. This might prevent the Pipify view from toggling on and off: ``` isPresented changed...

This has been happening since Beta 1 of Xcode 14, and we're on Beta 4. I extracted the contents of the slice where it crashed, but when I put it...

FWIW, I found this code which is another take on your `init(from slice: ArraySlice' method which does not cause a crash on Xcode 14, but I am not sure how...

You can run the Simulator target in swift-atem and the sample code above to replicate the error too. The fatal error may occur on a different message like `_VMC`. ```...

This should help you out: ``` public struct FairlightEqualizerBandShape: OptionSet { public let rawValue: UInt8 public init(rawValue: UInt8) { self.rawValue = rawValue } public static let lowShelf = Self(rawValue: 1

@Dev1an Were you able to reproduce this on your end?

There are some comments about changes to unaligned access to data in buffer pointers that might be relevant? https://developer.apple.com/documentation/Xcode-Release-Notes/xcode-14-release-notes?changes=_2

Here's another possible workaround that does not result in crashes in my limited testing. From this link: https://stackoverflow.com/questions/52080844/fatal-error-when-using-withmemoryrebound-in-ios-swift ``` init(from slice: ArraySlice) { self.init(bigEndian: slice.withUnsafeBufferPointer { let uint = UnsafeRawBufferPointer($0).bindMemory(to:...

@iosmoon38 you can create a fork of this repo and just include the fix above. Then, the code won't get replaced everything you update the package.

> Thank you for the contribution! > > What is the `ProductName` (**`_pin`**) revision? Did you find something new or something that did not work with `ProductInfo`? Your implementation of...