Steve Thompson
Steve Thompson
Incidently the file is 28_000+ lines.
Hmm. Actually I'm noticing with Xcode 13.2.1 I can select the file again without any issues. I'm on an M1 Max.
That stuff is clearly proprietary. Swift the language and some of foundation is not. Use a playground in Xcode.
`carthage update --use-xcframeworks` You will also likely need to change minimum versions of deployment targets to get it to run
Does this mean this project is dead? I'm currently on a fork where I fixed this issue. Feel free to check it out. https://github.com/philosopherdog/CocoaDebug .
> I have the same issue. I have a fork that fixes this. If they were taking prs I would make one.
This code is there to handle the shake gesture. So you're sure this is what's causing your app to freeze only in iOS 15? You might have to fork the...
@akapate Super helpful! Thanx. If you're using Cocoapods then add this to your post_install phase: if target.name == 'CocoaDebug' config.build_settings['ENABLE_BITCODE'] = 'NO' end
Hopefully it gets merged in!
I'm just looking this problem over again. The issue is that - (instancetype)initWithObjects:(const id [])objects forKeys:(const id [])keys count:(NSUInteger)cnt is the designated initializer in the superclass and this subclass overrides...