Dmitry
Dmitry
Yes i am test it with my project, works as i expect. About infinite recursion loop, please take a look on override_didMoveToWindow method, which occurs in UI categories, it also...
NUISwizzler class implements swizzle for editingRectForBounds of UITextField and other methods for all views. ``` - (void)swizzleAll { ............................ [self swizzle:[UITextField class] methodName:@"editingRectForBounds:"]; ............................ } - (void)swizzle:(Class)class methodName:(NSString*)methodName { SEL...
I think, reason that override_editingRectForBounds exist, is for future features. At current version i never met of usage it.
Sorry, but i am can't write test for this case, this is because that ``` - (CGRect)editingRectForBounds:(CGRect)bounds; ``` method is not called by XCTest.framework. I think by this reason NUI...
Try to use my fork, https://github.com/sdkdimon/RACObjC
Also it is separated for UI and Non UI modules.
I have similar issue, and there is a workaround Clone cocoapods repo to your local machine. Then checkout latest tag for example 1.14.2. Run bundle install. Here the patch :...
Also my AX201 works in Sonoma. I've using latest BlueToolFixup kext, and myself build of IntelBluetoothFirmware kext with updated firmware and patch for LE devices(https://github.com/OpenIntelWireless/IntelBluetoothFirmware/pull/446). [Kexts.zip](https://github.com/OpenIntelWireless/IntelBluetoothFirmware/files/13364626/Kexts.zip)
I have also try to fix that warning but with no luck ((
Have a dirty fix for the issue. https://github.com/sdkdimon/TCACoordinators/tree/sdkdimon/experimental-tca-190 I suppose to have something cleaner needs to do a whole lib refactor, unfortunately. That's because deprecated and actual scope methods have...