Posts

Post not yet marked as solved
1 Replies
465 Views
I'm testing out adding CarPlay support to my app and had a lot of trouble getting the CarPlay simulator(the one accessible through I/O->External Displays->CarPlay from the simulator app) to respond to any touches. At first I thought it was a problem with my app, but then I erased all contents and settings, turned on car play, and attempted to even interact with the default view to no avail. Throughout the morning it's worked on and off so something is not right here. Xcode 14.2, iOS 16.2. As you can see from the screenshot there are no other apps installed.
Posted Last updated
.
Post not yet marked as solved
3 Replies
553 Views
I've been an admin on my team for at least five years but somehow over the weekend I seem to have lost access. When I log into App Store Connect I can see my account just fine as part of the team and it has admin status for all apps in the account. When I log into developer.apple.com I do not see that team. Anyone have any ideas for what this may be? I tried a different browser, private window, etc.
Posted Last updated
.
Post not yet marked as solved
8 Replies
2.8k Views
Hi, We're an app-vendor that uses a wild card app ID for our development and beta builds. We're working on a feature that requires app groups but seems like that isn't supported with a wild card app ID? Is there a way to do this? I understand wildcard app IDs are meant for apps that don't require specific capabilities, but I'd like to roll this feature across *all* the apps that have that wild card app ID, so is there a way to do this or do I need to figure out how to support all those apps with individualized app IDs and a profile for each??
Posted Last updated
.
Post marked as solved
8 Replies
4.4k Views
Hello, I have a workspace with a framework project from before Xcode 14. It links to four external frameworks(no cocoa pods or SPM). When I compile, I get the following error: Dependency for P0:target-MyTarget-98b0bea19fac02a3306518d8bebb7db7e90b4d78a49724033552d3dffd5a3b44-:Release:SwiftDriver Compilation MyTarget normal arm64 com.apple.xcode.tools.swift.compiler is not absolute (Frameworks/Mapbox.framework/Headers/MGLMapCamera.h). And I get one of these for every single header in the framework. I don't get this if I use a new project created in Xcode 14. What gives? I've been searching high and low for any information on what that even means to no avail. I even searched the SwiftDriver source on GitHub. For that matter, why is the swift compiler doing anything with an Objective C SDK? Any insights are appreciated.
Posted Last updated
.
Post not yet marked as solved
5 Replies
4.3k Views
Hello, At run time, one of my apps is crashing every time with dyld[1406]: missing symbol called dyld config: DYLD_LIBRARY_PATH=/usr/lib/system/introspection DYLD_INSERT_LIBRARIES=/usr/lib/libBacktraceRecording.dylib:/Developer/Library/PrivateFrameworks/DTDDISupport.framework/libViewDebuggerSupport.dylib I'm on an M1 Mac using Xcode 14 and targeting iOS 16. I tried this with Xcode 13.4.1 on this same laptop and had the same issue. It does not give me any further information and it's always crashing on the same line: let xml = XML.parse(data) . However, if I place a breakpoint on that line and po the result of the XML call it prints correctly in the debugger, so not sure what symbol is missing....
Posted Last updated
.
Post not yet marked as solved
0 Replies
625 Views
Hi, I think the answer is no, and I've been researching to find out otherwise to no avail, but is there a way to expire banner notifications after a certain amount of time? An example of this may be the score of the first half of a game, or an overnight weather alert. First half score is irrelevant to me a couple of hours later when the game is over. So is there a way to have a banner which shows up as a notification expire and go away after x number of minutes without user intervention and ideally regardless of whether or not the app is currently running? If so where do I find the docs for it?
Posted Last updated
.
Post marked as solved
5 Replies
5.6k Views
I know there's a bunch of questions out there about this but most of the solutions either haven't worked for me or are obsolete. I work for an app vendor - usually our customers provide us with their certificates and profiles so we can do the app submission for them. I have one customer who does not want to do so for security reasons, and is asking for an unsigned IPA that they can resign themselves and submit. ... is there a non-hacked way to do that? I managed to create an unsigned IPA and resign it but I can't install it on device as I get a message that its integrity could not be verified. If I run codesign -f -s with the appropriate cert it passes. But then if I try to verify it with code sign -v I get no identity found. security find-identity gives me almost 9 valid identities. Anyone do this successfully in the past year? Does the provisioning profile need to be a specific type(adhoc vs App Store). I used an adhoc profile with a device that I verified is in the profile. Is it a matter of exporting an xcarchive from Xcode and giving it to them? Should that archive be signed with my own stuff and then they can resign?
Posted Last updated
.
Post marked as solved
2 Replies
2.5k Views
Hi, I have an empty sample app with the following code in viewDidLoad in ViewController.m. The image blueSky.jpg is added directly in the project rather than in an asset catalogue to mimic some existing code I inherited recently. With this code, if I turn on VoiceOver on device and start up the app, it will say "I am not a description", pause for a moment, say "image", then describe the image "blue sky, clouds", on iOS 14. On iOS 13 it will read the accessibilityLabel and that's it. My question is - how do I turn off the image describing in iOS 14? It's redundant and for some of the other images I have in my project it is just outright incorrect. Been looking high and low for two days. Please advise. :( 		UIImageView *imageView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"blueSky.jpg"]]; 		imageView.isAccessibilityElement = YES; 		imageView.accessibilityLabel = @"I am not a description"; 		CGPoint origin = imageView.frame.origin; 		origin.y = 50; 		origin.x = 50; 		 		CGRect imageFrame = imageView.frame; 		imageFrame.origin = origin; 		imageView.frame = imageFrame; 		self.view.isAccessibilityElement = NO; 		 		[self.view addSubview:imageView];
Posted Last updated
.