Post

Replies

Boosts

Views

Activity

app name not updating in TestFlight
tried all sorts of things and lots of recommendations from "ChatGPT" (boo... yeah sure it is going to take all of our jobs by just guessing at wrong answers... we can do that ourselves, haha) which yielded no answer. we are trying to change the app name but it keeps showing the old name in Test Flight. app shows proper name when installed on device from test flight. yes we are changing the "cf bundle display name" ... i did try deleting test flight and re-installing it, and also deleting app and re-installing it from test flight. still shows old name in test flight. this is a branding issue, the client wants to see the new name. how to fix this?
0
0
83
Jan ’26
no xcode crash logs any more?
hello, xcode used to be good at getting crash logs from the apple servers. now we are getting crash reports from users (reported in the apple test flight console), but when we try to look for the stack traces in xcode, there is nothing there any more. any ideas why those are not getting uploaded? do we have to ask users to flip some switch on their device settings to allow upload of crash reports?
0
0
471
Mar ’23
avassetreader convert hdr frames to proper colorized CIImages
there are a lot of examples on how to add HDR video support to your apps, but we want to do is read video frames from an HDR video file and then properly map the colors to CIImages so they don't look washed out. it seems like there is some sort of color transform that needs to be applied. but does anyone know the magic formula? CVPixelBufferRef inputPixelBuffer = CMSampleBufferGetImageBuffer(buffer); CIImage* ciImage = [CIImage imageWithCVPixelBuffer:inputPixelBuffer]; // one vid frame
3
0
1.5k
Oct ’22
-[NSWorkspace URLForApplicationWithBundleIdentifier:] returns apps from xcode archives
fyi, found this strange problem when trying to check if a different mac app is installed... from an ObjC mac app. see attached snapshot of debug. it finds the app all right, but it's from an xcode archive rather than an installed runnable app. does anybody know a workaround for this? i guess delete those archives temporarily...? the deprecated method fullPathForApplication also does this, lol
2
0
1.1k
Oct ’22
storekit not prompting for sandbox user login
running ios14, store kit is no longer prompting for sandbox user login even though i logged out of a real account on the device. how does it know to pull the product list from our unapproved lists of in-app purchases (e.g. new ones) if it does not prompt for sandbox? also it is strange that [SKPaymentQueue canMakePayments] is returning true even tho i have logged out. that seems to be an error on apple's part. no i cannot make payments on that device anymore.
0
0
800
May ’21
app name not updating in TestFlight
tried all sorts of things and lots of recommendations from "ChatGPT" (boo... yeah sure it is going to take all of our jobs by just guessing at wrong answers... we can do that ourselves, haha) which yielded no answer. we are trying to change the app name but it keeps showing the old name in Test Flight. app shows proper name when installed on device from test flight. yes we are changing the "cf bundle display name" ... i did try deleting test flight and re-installing it, and also deleting app and re-installing it from test flight. still shows old name in test flight. this is a branding issue, the client wants to see the new name. how to fix this?
Replies
0
Boosts
0
Views
83
Activity
Jan ’26
app cannot be installed because it's integrity could not be verified
suddenly getting this message for test flight installs what is going on?
Replies
89
Boosts
29
Views
86k
Activity
Feb ’24
tons of "new build system" errors
guys, the new build system apple has forced us to is causing tons of build errors in old projects. does anyone know what is going on? why did they break our builds? what is the migration path to the new?
Replies
0
Boosts
0
Views
428
Activity
Apr ’23
no xcode crash logs any more?
hello, xcode used to be good at getting crash logs from the apple servers. now we are getting crash reports from users (reported in the apple test flight console), but when we try to look for the stack traces in xcode, there is nothing there any more. any ideas why those are not getting uploaded? do we have to ask users to flip some switch on their device settings to allow upload of crash reports?
Replies
0
Boosts
0
Views
471
Activity
Mar ’23
what happened to stack traces in appstoreconnect?
we used to be able to get stack traces from app store connect when the app crashed and the user filled out the response. now we only get some generic information about the device state. is there any way we can get these stack traces back? these are very valuable.
Replies
1
Boosts
0
Views
888
Activity
Dec ’22
UIActivityViewcontroller on mac catalyst app / save to files
hi all, i got the UIActivityController popup to work ok on mac catalyst, but there is no "save to files" option like on ipad / iphone. of course on ios it saves to the files app, i would just like to save the output somewhere in the users mac file system any ideas how to enable this?
Replies
2
Boosts
1
Views
1.6k
Activity
Dec ’22
avassetreader convert hdr frames to proper colorized CIImages
there are a lot of examples on how to add HDR video support to your apps, but we want to do is read video frames from an HDR video file and then properly map the colors to CIImages so they don't look washed out. it seems like there is some sort of color transform that needs to be applied. but does anyone know the magic formula? CVPixelBufferRef inputPixelBuffer = CMSampleBufferGetImageBuffer(buffer); CIImage* ciImage = [CIImage imageWithCVPixelBuffer:inputPixelBuffer]; // one vid frame
Replies
3
Boosts
0
Views
1.5k
Activity
Oct ’22
-[NSWorkspace URLForApplicationWithBundleIdentifier:] returns apps from xcode archives
fyi, found this strange problem when trying to check if a different mac app is installed... from an ObjC mac app. see attached snapshot of debug. it finds the app all right, but it's from an xcode archive rather than an installed runnable app. does anybody know a workaround for this? i guess delete those archives temporarily...? the deprecated method fullPathForApplication also does this, lol
Replies
2
Boosts
0
Views
1.1k
Activity
Oct ’22
app store binary upload failing today?
getting upload fails today from xcode 13.2.1. worked ok yesterday with a different account. anyone else seeing this?
Replies
1
Boosts
0
Views
881
Activity
Mar ’22
Sign In with Apple, no hide my email button
hi, we have implemented Sign In with Apple and it works fine, but we do not get the newer "hide my email" radio button line. using Xcode 13.2.1 running on ios15.2 real device. is there something special we have to enable in our code to get this hide my email feature?
Replies
1
Boosts
0
Views
1.4k
Activity
Mar ’22
where did the CPU / memory meters go in xcode12.x?
there used to be some cool CPU and memory meters in xcode 11 and prior that you could flip to while your app was running from Xcode (e.g. not full Instruments). does anyone know if we can get them back in xcode 12? did they hide them or remove them?
Replies
1
Boosts
0
Views
827
Activity
Jul ’21
bring up memoji only on keyboard
does anyone know if is there any keyboard setting where we can bring up only the memoji portion of the keyboard programmatically?
Replies
0
Boosts
0
Views
772
Activity
Jul ’21
storekit not prompting for sandbox user login
running ios14, store kit is no longer prompting for sandbox user login even though i logged out of a real account on the device. how does it know to pull the product list from our unapproved lists of in-app purchases (e.g. new ones) if it does not prompt for sandbox? also it is strange that [SKPaymentQueue canMakePayments] is returning true even tho i have logged out. that seems to be an error on apple's part. no i cannot make payments on that device anymore.
Replies
0
Boosts
0
Views
800
Activity
May ’21
2FA text msg not working on app store connect
what is going on apple, it is not sending text message for 2FA. please fix it.
Replies
0
Boosts
0
Views
890
Activity
May ’21