Search results for

“DTiPhoneSimulatorErrorDomain Code 2”

163,100 results found

Post

Replies

Boosts

Views

Activity

Shooting with 2 rear cameras
I was wondering if there's a way to shoot with two rear cameras simultaneously and recieve two discrete images from them?I saw that with iPhone 11 Pro and iOS 13, some apps like Filmic Pro will have access to two video streams from multiple cameras. Is that available to all developers or only Apple partners? If so, is the API available or will it be made available in the future?I'm looking to take two photos from rear facing cameras and applying post-processing to them seperately before merging them in our app.Also, related but seperate: is there any way to recieve rectification/calibration data from the individual device to account for alignment differences between individual units during manufacturing?
4
0
2.8k
Sep ’19
Reply to How do you set a button (created with code) to conform to AutoLayout?
You can 'roll your own' auto layout using code like: float screenWidth=self.view.bounds.size.width; float screenHeight=self.view.bounds.size.height; float leftEdge=screenWidth/2 - myUIComponent.frame.size.width/2; float topEdge=30; myUIComponent.frame=CGRectMake(leftEdge,topEdge,myUIComponent.frame.size.width,myUIComponent.frame.size.Height); anotherUIComponent.center=CGPointMake(screenWidth/2,screenHeight/2);
Topic: UI Frameworks SubTopic: UIKit Tags:
May ’18
WatchOS 2 and CFNetwork
The framework directory for Watch OS 2 has CFNetwork framework in it, but instead of header files there is a file called /WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetwork.tbd.Presumably this is a shorthand method of saying TBD. Yet this obviously has a dramatic impact on whether something can be ported. Can we get a clearer picture of which APIs there are going to be included?
1
0
534
Jul ’15
Merge 2 Apple IDs
Now that Apple is allowing users to merge two Apple IDs, how does one remove/delete songs from the Primary Apple ID music library? Is it a no-no to merge two Apple IDs? The notes on merging suggest this is a problem but offer no workaround. The only option I can see is to hide songs. Is this sufficient to allow the merging of two Apple IDs?
1
0
111
Mar ’25
iPad 2 in Bootloop
HelloI have updated the last week mine iPad 2 on the beta from iOS9.Yesterday I wanted mine iPad entsperren and it suddenly went out and then hung in a boat loop.I have already brought this iPad in the Recovery and Restore to mode and have restored about iTunes. After the restoration hangs iPad still in the loop.What can I do?Thanks in advanceGreeting Martin
3
0
432
Jul ’15
IPC between two processes
I am looking for a solution to transfer data between two completely separate processes (not from the same group). I did a lot of research, but the solutions were mostly for processes that are in a group. Is there a method? (It doesn't matter if the app is sandboxed, I can disable it). My goal is to communicate between a bundle(plugin) that is activated on the Mac login page and an XPC service and transfer data from the service to the bundle.
3
0
1.1k
Dec ’23
Reply to xCode Issue
Thanks for asking Claude. Just hard to highlight it. We are getting this Thread 1: EXC_BAD_ACCESS (code=2, address=0x7fff8647d5c8) with this section of the full code: if (strlen(symbol_name) > 1 && strcmp(&symbol_name[1], cur->rebindings[j].name) == 0) { indirect_symbol_bindings[i] = cur->rebindings[j].replacement; // Thread 1: EXC_BAD_ACCESS (code=2, address=0x7fff8647d5c8) goto symbol_loop;
Jan ’22
Beta 2 Unresponsive
My watch has become completely unresponsive since upgrading to beta 2.First, the battery got low very quickly after just a few hours of use, after charging it, it restarted itself and showed the Apple Logo for a long time, now the screen is blank and the buttons are completely unresponsive (even when trying to force restart it), although my iPhone seems to be connected to it still.
3
0
630
Jun ’17
Charactor Code of AssetId
Accoding to Table 2-4 of FairPlay Programing Guide, Asset ID in SPC is byte array.On other hand, the chapter EME Message Exchange says The AssetId can be any string you choose.So what charactor code should I choose?In FPS_in_Safari_Example.html, charactor code of AssetId is like Unicode.Its javascript code to get byte array is the below: function stringToArray(string) { var buffer = new ArrayBuffer(string.length*2); // 2 bytes for each char var array = new Uint16Array(buffer); for (var i=0, strLen=string.length; i<strLen; i++) { array[i] = string.charCodeAt(i); } return array; }The length of Unicode is not always 2 bytes. So it will not working well because Key Server can't extract original string.It doesn't make sense to treat Asset Id as string in Safari.Should I pass AssetId to Key Server in the outer of SPC Message?
1
0
558
Sep ’16
What is the order of didMoveToWindow for two views?
What is the calling order of didMoveToWindow for two views after switching between two ViewControllers. In my project,we need get the property of view.window to prejucduce if the view is in the window,when one ViewController transform to another viewController。 We would like to know how this behavior is defined
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
744
Jun ’23
Configurator 2 disabled Boot
After connecting my M1 to an Intel Mac where I started Configurator 2 the M1 boots in a loop, seeing the Apple Logo and the progressbar until half and then restart and same again in a endless loop. When I connected the M1 to the Intel Mac with Configurator 2 open I set the M1 in DFU mode and Configurator 2 said it need to download and install something ( 1 item ). After that it restarted and I saw the M1 in DFU mode again after Configurator 2 restarted. I didn't do any restore or revive. I closed Configurator 2 and restarted the M1. From thenon it is in a boot loop. I opened the recovery mode on the M1 and First aided the Macintosh HD drive and the DATA drive. Both successful without any errors. When I boot the M1 in option mode to see which drives available I don't see the Macintosh HD anylonger only the Options entry. How can I make the Macintosh HD be able to used as Boot drive again ?
2
0
760
Jun ’21
Shooting with 2 rear cameras
I was wondering if there's a way to shoot with two rear cameras simultaneously and recieve two discrete images from them?I saw that with iPhone 11 Pro and iOS 13, some apps like Filmic Pro will have access to two video streams from multiple cameras. Is that available to all developers or only Apple partners? If so, is the API available or will it be made available in the future?I'm looking to take two photos from rear facing cameras and applying post-processing to them seperately before merging them in our app.Also, related but seperate: is there any way to recieve rectification/calibration data from the individual device to account for alignment differences between individual units during manufacturing?
Replies
4
Boosts
0
Views
2.8k
Activity
Sep ’19
Reply to How do you set a button (created with code) to conform to AutoLayout?
You can 'roll your own' auto layout using code like: float screenWidth=self.view.bounds.size.width; float screenHeight=self.view.bounds.size.height; float leftEdge=screenWidth/2 - myUIComponent.frame.size.width/2; float topEdge=30; myUIComponent.frame=CGRectMake(leftEdge,topEdge,myUIComponent.frame.size.width,myUIComponent.frame.size.Height); anotherUIComponent.center=CGPointMake(screenWidth/2,screenHeight/2);
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
May ’18
SwiftUI LazyVGrid with two columns
lazyVGrid with two columns, is there a way to span the odd last item to span the two columns just to be symmetric🤔. Apple reminders app does exactly that but not sure if they use the LazyVGrid any pointers are very much appreciated.
Replies
2
Boosts
0
Views
1.6k
Activity
Jul ’20
WatchOS 2 and CFNetwork
The framework directory for Watch OS 2 has CFNetwork framework in it, but instead of header files there is a file called /WatchOS.platform/Developer/SDKs/WatchOS.sdk/System/Library/Frameworks/CFNetwork.framework/CFNetwork.tbd.Presumably this is a shorthand method of saying TBD. Yet this obviously has a dramatic impact on whether something can be ported. Can we get a clearer picture of which APIs there are going to be included?
Replies
1
Boosts
0
Views
534
Activity
Jul ’15
Two Apps of the same App?
Is it allowed to launch two Apps, which are the same Apps just in two Languages? F.x. ExampleApp in German and ExampleApp in English. This way there could be some features or Design changes in the German App which arent in the English app.
Replies
1
Boosts
0
Views
590
Activity
Oct ’17
Merge 2 Apple IDs
Now that Apple is allowing users to merge two Apple IDs, how does one remove/delete songs from the Primary Apple ID music library? Is it a no-no to merge two Apple IDs? The notes on merging suggest this is a problem but offer no workaround. The only option I can see is to hide songs. Is this sufficient to allow the merging of two Apple IDs?
Replies
1
Boosts
0
Views
111
Activity
Mar ’25
iPad 2 in Bootloop
HelloI have updated the last week mine iPad 2 on the beta from iOS9.Yesterday I wanted mine iPad entsperren and it suddenly went out and then hung in a boat loop.I have already brought this iPad in the Recovery and Restore to mode and have restored about iTunes. After the restoration hangs iPad still in the loop.What can I do?Thanks in advanceGreeting Martin
Replies
3
Boosts
0
Views
432
Activity
Jul ’15
download related two apps
i hope how to download related two apps,we make image two apps A and B, such as.if app A only installed, app A atracts app B from the app store.did you know how to that?
Replies
2
Boosts
0
Views
431
Activity
Jun ’20
IPC between two processes
I am looking for a solution to transfer data between two completely separate processes (not from the same group). I did a lot of research, but the solutions were mostly for processes that are in a group. Is there a method? (It doesn't matter if the app is sandboxed, I can disable it). My goal is to communicate between a bundle(plugin) that is activated on the Mac login page and an XPC service and transfer data from the service to the bundle.
Replies
3
Boosts
0
Views
1.1k
Activity
Dec ’23
Reply to xCode Issue
Thanks for asking Claude. Just hard to highlight it. We are getting this Thread 1: EXC_BAD_ACCESS (code=2, address=0x7fff8647d5c8) with this section of the full code: if (strlen(symbol_name) > 1 && strcmp(&symbol_name[1], cur->rebindings[j].name) == 0) { indirect_symbol_bindings[i] = cur->rebindings[j].replacement; // Thread 1: EXC_BAD_ACCESS (code=2, address=0x7fff8647d5c8) goto symbol_loop;
Replies
Boosts
Views
Activity
Jan ’22
Beta 2 Unresponsive
My watch has become completely unresponsive since upgrading to beta 2.First, the battery got low very quickly after just a few hours of use, after charging it, it restarted itself and showed the Apple Logo for a long time, now the screen is blank and the buttons are completely unresponsive (even when trying to force restart it), although my iPhone seems to be connected to it still.
Replies
3
Boosts
0
Views
630
Activity
Jun ’17
Charactor Code of AssetId
Accoding to Table 2-4 of FairPlay Programing Guide, Asset ID in SPC is byte array.On other hand, the chapter EME Message Exchange says The AssetId can be any string you choose.So what charactor code should I choose?In FPS_in_Safari_Example.html, charactor code of AssetId is like Unicode.Its javascript code to get byte array is the below: function stringToArray(string) { var buffer = new ArrayBuffer(string.length*2); // 2 bytes for each char var array = new Uint16Array(buffer); for (var i=0, strLen=string.length; i<strLen; i++) { array[i] = string.charCodeAt(i); } return array; }The length of Unicode is not always 2 bytes. So it will not working well because Key Server can't extract original string.It doesn't make sense to treat Asset Id as string in Safari.Should I pass AssetId to Key Server in the outer of SPC Message?
Replies
1
Boosts
0
Views
558
Activity
Sep ’16
can 2 apps have the same name ?
can 2 apps have the same name ?
Replies
0
Boosts
0
Views
201
Activity
Nov ’20
What is the order of didMoveToWindow for two views?
What is the calling order of didMoveToWindow for two views after switching between two ViewControllers. In my project,we need get the property of view.window to prejucduce if the view is in the window,when one ViewController transform to another viewController。 We would like to know how this behavior is defined
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
744
Activity
Jun ’23
Configurator 2 disabled Boot
After connecting my M1 to an Intel Mac where I started Configurator 2 the M1 boots in a loop, seeing the Apple Logo and the progressbar until half and then restart and same again in a endless loop. When I connected the M1 to the Intel Mac with Configurator 2 open I set the M1 in DFU mode and Configurator 2 said it need to download and install something ( 1 item ). After that it restarted and I saw the M1 in DFU mode again after Configurator 2 restarted. I didn't do any restore or revive. I closed Configurator 2 and restarted the M1. From thenon it is in a boot loop. I opened the recovery mode on the M1 and First aided the Macintosh HD drive and the DATA drive. Both successful without any errors. When I boot the M1 in option mode to see which drives available I don't see the Macintosh HD anylonger only the Options entry. How can I make the Macintosh HD be able to used as Boot drive again ?
Replies
2
Boosts
0
Views
760
Activity
Jun ’21