Max
Max
As I understand the problem is hide here ``` @discardableResult private func setPause(from currentState: State, to newState: State = .paused) -> Bool { guard self.state == currentState else { return...
Faced with crash that related to this part of code. ``` #5. Crashed: com.repeat.queue 0 libdispatch.dylib 0x180859630 _dispatch_queue_xref_dispose$VARIANT$mp + 72 1 libdispatch.dylib 0x180854e18 -[OS_dispatch_source _xref_dispose] + 24 2 Repeat 0x102343944...
Faced with the same issue.
For this moment I have found that this problem is hidden here. ``` - (void)setOptions:(NSDictionary *)options { NSMutableDictionary *cleanOptions = [options mutableCopy]; [options enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {...
Here is a solution that helped me ``` NSNumber(value: CRToastType.navigationBar.rawValue) ``` cause at enumeration we have a comparing with class. If you have more than gust one key next dictionary...