M
M
just a side comment: obviously have a valca sample also.. wrote patches to support pitch via note pitch and not only CC for ableton max. But your comment actually reminded...
same idea here, so +1. the problem i am facing is `'ObservableObject' is ambiguous for type lookup in this context` in Xcode 11.3.1 which is the last Version that supports...
uuh sometime one more cofé helps.. i had to change ```swift import Combine class SomeCombineUsingClass : ObservableObject { //... } //to import OpenCombine class SomeCombineUsingClass : OpenCombine.ObservableObject { //... }...
that leaves me with a simple question.. how to take on code parts that make use of **`@Publisher`** feature.. "just" 8 properties that needs to be rewritten .. which i...
nice one! thank you. but i can not admit done yet. I linked all 4 OpenCombine libs, doesnt hurt yet, also `import OpenCombine` & `import OpenCombineDispatch` them in code. Outcommented...
compile success. Resume.. ``` import OpenCombine import OpenCombineDispatch typealias Published = OpenCombine.Published someObserveable.$highlighted .receive(on: DispatchQueue.main.ocombine) .sink { [weak self] newValue in self?.overlayView.needsDisplay = true } .store(in: &cancellables) ``` made it...
would be nice to be able to use "@Published" directive in earlier Swift versions that do not know it
fixed. see: https://github.com/OpenCombine/OpenCombine/issues/217#issuecomment-1159253820
would be nice to be able to use "@Published" directive in earlier Swift versions that do not know it
methodical thinking pointed the right direction and with help the learning curve was sharp. Thnx
to be able to work an class named "SharedArrayBuffer" should exist, which is nowhere to find.. means as it does not exist in Safari the ringbuff works starting Safari 15.2...
when you remove also the `microphone` via setting it to `= nil` you also remove its **delegate** with it, which leads to no call of the delegate methods of course.