Oleksandr Voronov

Results 7 comments of Oleksandr Voronov

Nope, just haven’t tested on it. If it works for you on macos - feel free to add PR and we’ll merge it

@hugocroch just set `dummyCount` to 1, so it doesn't scroll through several screens (with animation) once you try to select an item. And call `selectItem(at:animated:scrollPosition:)` with proper indexPath. Usually you...

Sure, but I mean saving some human-readable seed that I can use later in case I'm interested in replaying test suite with it. So as a concrete example - I...

Thanks for the answer! Indeed I can use Mirror to get `_state` value, so it might work for now. > I don't see any harm in making `_state` public so...

> Then in `Store`, `dispatchFunction` becomes `public var dispatchFunction: ((Store) -> DispatchFunction)!` > > and the dispatch function creation becomes > ```swift > self.dispatchFunction = { store in > middleware...

Thanks! I'm not working with Wowza SDK any more. However any answer might be helpful for others looking into this.

quick fix solution ¯\\_(ツ)_/¯ ```swift class Test: NSObject, WOWZStatusCallback { let goCoder: WowzaGoCoder.sharedInstance()! func stream() { goCoder.startStreaming(WOWZStatusCallbackProxy(self)) // now everything's fine } } class WOWZStatusCallbackProxy: NSObject, WOWZStatusCallback { private weak...