i am getting this error when i added a new app extension (notification content)
error: Embedded binary's bundle identifier is not prefixed with the parent app's bundle identifier.
Embedded Binary Bundle Identifier: (null)
i have set it up the same way as another app extension in the app. i have also tried to set the bundle id manually in the info.plist file as noted by some posts, but xcode keeps changing it back to the default of ${PRODUCT_BUNDLE_IDENTIFIER}. e.g. my manual edits to info.plist aren't being accepted for this key.
it seems like maybe PRODUCT_BUNDLE_IDENTIFIER variable is getting cleared to null for that extension during the build process?
any workarounds?
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
my understanding is that header file search paths (-I options) go directly to the compiler command lines. so: why when i switch to the new build system am i suddenly getting header file path errors (cant find various header files)? does any one have any documentation on how the new build system affects the header file search paths?
does anyone know if the CreateML app has a way to build Support Vector Machine models for tabular regression? I see only the attached options. xcode14.2
hi all,
is it possible to control the orientation of the UIMenuController popup menu or does it always follow the status bar orientation like so many other things do?
see attached. main app is in portrait but some uses are in a landscape mode. but the status bar is still portrait in this case. so we would like to force rotate the popup menu to be in landscape mode.
do any of the new metrics tools allow the developers to detect app uninstalls per user?
business clients are requesting this.
hi all, I am trying NSKeyedArchiver to archive an ObjC object.
is it possible to specify a particular @property of the class that is to archived so that the @property is not put into the archive? or just put it into the archive as nil or something innocuous like NSNull or something.
e.g. i have a uidelegate @property in my class, but i dont want that put into the archive
i guess i could nil this out manually before archiving, but i wonder if anyone knows a cool trick for this
anyone noticing an alarming number of Xcode crashes when doing the above?
Xcode 15.0.1
anyone know of latest best practices for hiding the status bar in 2024 in UIKit?
the old ways no longer work
they change every once in a while
hey guys.
it's not thanksgiving holiday in every country.
your 2FA is broken. says "cannot send SMS message" or something.
somebody pay the Twilio bill haha!
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
anyone else see this?
Xcode uploader says:
App record with bundle identifier (our bundle) not found on App Store. (Then a bunch of boilerplate error msg).
This not a new app upload, app is already on the store.
Topic:
App Store Distribution & Marketing
SubTopic:
App Store Connect
does anyone know where to find some slideshow/text/pdf versions of these?
https://developer.apple.com/tutorials/swiftui
maybe apple can use that fancy AI they are working on to generate those from the vides... to stress-test the AI :)
Topic:
Developer Tools & Services
SubTopic:
General
How did my contacts suddenly end up on iCloud when I didn't give permission to do such? Where is your security and privacy commitment for your own software, Apple? No wonder celebrities get hacked. They hack 1, and then you get a list of phone numbers and emails for a whole bunch of other A-listers.
we used to use code such as this to make sure the keyboard comes up in a desired orientation
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationLandscapeRight animated:NO];
however, apple has no-op'd setStatusBarOrientation:
it still can be called, but it gives a warning that it no longer does anything as of iOS13
does anyone know the recommended replacement path for this feature?
previously (last year) I was able to generate provision profiles that matched to the *.maccatalyst.*com.* bundle id pattern. now when i try to generate a new mac provision profile because my prior profile expired, this site generates the profile for the iPad version of the bundle id pattern. e.g. without the .maccatalyst. portion of the bundle id. this is not usable for code signing of the mac app since the bundle id does not match. what is going on with this?
is it possible for other iOS apps to hold onto microphone access when those apps are in the background? we see some cases where our app cannot get mic access (e.g. we can record video but we get no sound) and we think it might be another app such as Telegram "holding onto" the mic, because when we quit all other apps, our app works ok. this seems like an odd failure mode. any hints how to fix it?