Posts

Post not yet marked as solved
1 Replies
One way I found is to swizzle UITouch force and timestamp methods. #import <objc/runtime.h> @implementation UITouch (UITouch_Overrides) + (void)load { [super load]; static dispatch_once_t onceToken; dispatch_once(&onceToken, ^{ [self swizzleForce]; [self swizzleTimestamp]; }); } + (void)swizzleForce { [self swizzle:@selector(force) with:@selector(ed_force)]; } + (void)swizzleTimestamp { [self swizzle:@selector(timestamp) with:@selector(ed_timestamp)]; } + (void)swizzle:(SEL)originalSelector with:(SEL)swizzledSelector {     Class class = [self class];     Method originalMethod = class_getInstanceMethod(class, originalSelector);     Method swizzledMethod = class_getInstanceMethod(class, swizzledSelector);     BOOL didAddMethod =         class_addMethod(class,             originalSelector,             method_getImplementation(swizzledMethod),             method_getTypeEncoding(swizzledMethod));     if (didAddMethod) {         class_replaceMethod(class,             swizzledSelector,             method_getImplementation(originalMethod),             method_getTypeEncoding(originalMethod));     } else {         method_exchangeImplementations(originalMethod, swizzledMethod);     } } - (CGFloat)ed_force { return 1.0; } - (NSTimeInterval)ed_timestamp { return 0; } @end
Post not yet marked as solved
4 Replies
What helped to me is removing saved Safari windows state. To remove it: Open Terminal app Copy&paste this rm /Users/ivanparfenchuk/Library/Containers/com.apple.Safari/Data/Library/Saved\ Application\ State/com.apple.Safari.savedState/windows.plist and hit Return. This is on macOS Big Sur. If the file isn't there, try to search for windows.plist in other places
Post not yet marked as solved
1 Replies
Have the same question: https://developer.apple.com/forums/thread/652532 Tried swizzling methods like defaultWidthForInkType:, without any luck so far.
Post not yet marked as solved
116 Replies
Same here... Suddenly, the fastlane+Bitrise pipeline stopped working today with errors likeITMS-90034: Missing or invalid signature - The bundle 'com.firstagenda.edagsordenqa' at bundle path 'Payload/edagsordenqa.app' is not signed using an Apple submission certificate.It seems to fail randomly. I would suggest resubmitting builds several times. Half of the submitted builds failed for us today.
Post marked as solved
2 Replies
Also interested to learn about it.
Post not yet marked as solved
7 Replies
I'm also interested in the enforcment date. Need to decide whether or not to develop the support for it now, before the iOS 13 release, or later.
Post not yet marked as solved
3 Replies
Same here.Using certificate issued by COMODO RSA Domain Validation Secure Server CA.Sombody here https://forums.developer.apple.com/thread/112522 suggests that letsencrypt certificate works, but why the COMODO doesn't? It could be great to have a better error message or comment from Apple on how to debug this.