Posts

Post not yet marked as solved
84 Replies
fyi apple posted a response to another thread on this issue (see page 12 of this thread), they are working on it: https://developer.apple.com/forums/thread/701330?page=12
Post not yet marked as solved
84 Replies
yes same here, tried a bunch of stuff like that. it looks like it installs but then says Install again, and the app on the home screen of the phone has a little cloud icon w/ a download arrow on it. we found this other commentary on this problem. no solution for us yet but there are some ideas there: https://developer.apple.com/forums/thread/720033 i put in a call to support, they had not heard about this issue yet. weird thing, installed ok on ios15.6.1 but not ios15.4 ok it just worked (good test flight install) on my ios16.1.1 phone... weird. maybe it is fixed now? update: it only ran once after install. then when i tried to relauch the app, it showed the beta expired alert again.
Post not yet marked as solved
1 Replies
if anyone is running into this, it seems that if you get an out of memory crash, you get no stack trace.
Post not yet marked as solved
2 Replies
FYI we got a half hour "office hours" appointment and after some chatter and trial and error, this method seemed to do the trick at extracting images from HDR / Dolby vids with better color. We don't know if it is the full answer yet, but it is definitely better. // prior to here, set up the AVAsset * asset // code is a bit of archaic ObjC syntax but it works NSArray* video_tracks = [asset tracksWithMediaType:AVMediaTypeVideo]; AVAssetTrack* video_track = [video_tracks firstObject]; NSMutableDictionary* dictionary = [[NSMutableDictionary alloc] init]; // kCVPixelFormatType_32BGRA (pixel format we originally used) // 420YpCbCr8BiPlanarFullRange (new pixel format that seems to work) // need to change the pixel format to this new one here, and also set the video color prop key below (which is 3 items in a dictionary) [dictionary setObject:[NSNumber numberWithInt:kCVPixelFormatType_420YpCbCr8BiPlanarFullRange ] forKey:(NSString*)kCVPixelBufferPixelFormatTypeKey]; dictionary[AVVideoColorPropertiesKey] = @{AVVideoColorPrimariesKey: AVVideoColorPrimaries_ITU_R_709_2, AVVideoTransferFunctionKey: AVVideoTransferFunction_ITU_R_709_2, AVVideoYCbCrMatrixKey: AVVideoYCbCrMatrix_ITU_R_709_2}; AVAssetReaderTrackOutput* asset_reader_output = [[AVAssetReaderTrackOutput alloc] initWithTrack:video_track outputSettings:dictionary]; // then proceed to normally walk thru frames of the video
Post not yet marked as solved
1 Replies
fyi if anyone having this problem, i shut off the new managed versioning switch in the uploader and it worked. whether this was co-incidental to the problem i dont know, but our upload works now.
Post not yet marked as solved
1 Replies
if anyone has this problem, we found the solution, you have to clear prior uses of this sign in w/ apple feature on a given app e.g. each user has to do it not so easy to explain this to the users https://github.com/invertase/react-native-apple-authentication/issues/144
Post not yet marked as solved
1 Replies
found it; crash report read into xcode was pushing down that panel.
Post not yet marked as solved
9 Replies
can verify that the new build system is still troublesome with large pre-existing projects on xcode 12. whenever we try to switch to it, lots of errors. trying to fix them uncovers more errors.
Post not yet marked as solved
2 Replies
we found a way to do it via the UITextView based on various notes online on the UITextView:  .allowsEditingTextAttributes = YES; (the above allows memoji to show in keyboard ; note that the user must have memoji switch on in his Settings/General/Keyboard) // subclass UITextView and override the paste: function (or modify the paste: function if you have it) // this is objC , swifties can figure out the swift // this handles memoji as image; there are rumors that you can get it as GIF but we havent tried that yet - (void)paste:(id)sender {     // handle memoji still image selection which results in a paste     UIImage *image = [[UIPasteboard generalPasteboard] image];     // you can use this image do put into a UIImageView or do whatever you want with it     // here we take it and put it in the UITextView     if (image) {           NSTextAttachment *textAttachment = [[NSTextAttachment alloc] init];           textAttachment.image = image;           NSAttributedString *string = [NSAttributedString attributedStringWithAttachment:textAttachment];           [self setAttributedText:string];     }     else {       // do ordinary paste stuff for regular text paste       [super paste:sender];     } }