Search results for

We are unable to process your request

69,589 results found

Post

Replies

Boosts

Views

Activity

Reply to telephony
> 1) I would like to monitor the telephony state of the device in order> to be able to reject incoming VoIP call when the user is already> talking on a telephony call.That should be feasible. When your app resumes in order to process the ring indication (that it got via the old VoIP API or via the silent push you get from PushKit), create and start a new instance of CTCallCenter. If that shows that the user is on a call, don't post a ring indication to the user but rather communicate the busy state back to your VoIP infrastructure.> 2) I would like to reject an incoming telephony call (with a busy> tone) if the user is already talking on a VoIP call.That's not possible on the current system. CT calls always take precedence over VoIP calls. If you'd like to see that change in the future, I encourage you to file a bug describing your requirements.<https://developer.apple.com/bug-reporting/>Please post your bug number, just for the record.Share and Enjoy--Quinn The Eskimo!Apple Deve
Jun ’15
Reply to NSMutableURLRequest timeoutInterval is not working?
I've seen reports of this in the past but never been able to nail down the circumstances under which it happens. I'd like to dig into this but that's not something I can do in the context of DevForums. If you'd like to open a DTS tech support incident, we can pick things up there.<https://developer.apple.com/support/technical/submit/>Alternatively, if you just want to work around this and then move on, you can run the request asynchronously and use an NSTimer to enforce whatever timeout you require.Share and Enjoy--Quinn The Eskimo!Apple Developer Relations, Developer Technical Support, Core OS/Hardware
Jun ’15
Reply to IOPCIMatch
Trace Follows:Anonymous UUID: 0A2A4A75-1866-A4AD-2B2C-E694BCFF5139 Thu Jun 18 10:28:21 2015 *** Panic Report *** panic(cpu 0 caller 0xffffff800ce17cc2): Kernel trap at 0xffffff800d311a93, type 14=page fault, registers: CR0: 0x000000008001003b, CR2: 0x0000000000270027, CR3: 0x000000016070f0bc, CR4: 0x00000000001627e0 RAX: 0xffffff7f8f2ef1a0, RBX: 0xffffff8018036f01, RCX: 0x0000000000800003, RDX: 0x0000000000270028 RSP: 0xffffff801430b968, RBP: 0xffffff801430b990, RSI: 0xffffff801430b9b0, RDI: 0x0000000000270027 R8: 0x0000000000000010, R9: 0xffffff801789c240, R10: 0x0000000000270028, R11: 0x0000000000000002 R12: 0x0000000000270027, R13: 0x0000000000000000, R14: 0x0000000000000000, R15: 0xffffff8018036f00 RFL: 0x0000000000010246, RIP: 0xffffff800d311a93, CS: 0x0000000000000008, SS: 0x0000000000000010 Fault CR2: 0x0000000000270027, Error code: 0x0000000000000000, Fault CPU: 0x0 Backtrace (CPU 0), Frame : Return Address 0xffffff801430b610 : 0xffffff800cd2bda1 0xffffff801430b690 : 0xffffff800ce17cc2 0xffffff801430b
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
GameCenter Sandbox rematch
I have the following code:if(tappedItem.match.status == GKTurnBasedMatchStatusEnded){ NSLog(@Participants %@, [tappedItem.match.participants description]); [tappedItem.match rematchWithCompletionHandler:^(GKTurnBasedMatch *match, NSError *error) { if (error) { NSLog(@%@, error); } else { [[GameKitHelper sharedGameKitHelper] setMatch:tappedItem.match]; [[NSNotificationCenter defaultCenter] postNotificationName:ShowGameScreen object:tappedItem.match]; } }]; }I've got a number of people Beta testing it via TestFlight with sandbox enabled, but for some reason I get the following error when trying to rematch:{GKServerStatusCode=5121, NSLocalizedDescription=The requested operation could not be completed because the player is invalid., NSUnderlyingError=0x17045cdd0 The operation couldn’t be completed. status = 5121, Invitation from: 224002977 to: 225851510 is not allowed because they are neither friends nor have recently played}The match was ended properly, so it's not that:[_match endMatchInTurnWithMatchDa
0
0
339
Jun ’15
Reply to How can I update the location in a specific time intervall?
To the best of my knowledge, the location services don't directly support that.You can use the continuous tracking option at the cost of high battery usage, or use the option to watch for significant changes in location.Neither operates on a specific time frequency.You can simulate time intervals by using tracking results that reflect the time interval you want.It may also be possible to use a timer and request additional background time, but that may or may not really work. Since iOS 7 that only gives you 2 minutes of background time, previously it was 11 minutes.I would imagine the logic was that it was more important to know when changes in location happened than to always get location data at a specific time.The continuous location feature is meant to be used for apps that give directions for travel, with the sigificant distance being used where high precision isn't important.
Jun ’15
xCode Server failed to start automated tests
Hello everyone,We encounter a problem when we try to use xCode Server to perform automated test.The destination of the automated test is the iPad 2 simulator. Also we have enabled code coverage for the corresponding scheme/targets.According to the logs for the Bot, at the end of the Build Log, it shows:xcodebuild[88163:801713] [MT] IDEBuildOperationQueueSetResourceManager: Resetting max operation to 1** TEST FAILED **None of the tests has been performed.From the console, the system log shows the following error:==== system log ===Jun 18 13:55:59: Xcode version: 6.3.2 (6D2105) (OS X SDK 13F34, iOS SDK 12F69) Jun 18 13:55:59: Server version: 4.1 (14S1092) Jun 18 13:55:59]: OS X version: 10.10.3 (14D136) Jun 18 13:56:00: common_reenable_update: UI updates were finally reenabled by application Xcode after 3.30 seconds (server forcibly re-enabled them after 1.00 seconds) Jun 18 13:56:01: inet_set_autoaddr(en1, 1) failed, Resource busy (16) Jun 18 13:57:29: process Xcode[93913] caught causing excessive wak
0
0
458
Jun ’15
nsurlsessiond crashes EXC_RESOURCE CPU in iOS 8.3
for the past few weeks on my iphone 5s, nsurlsessiond has been crashing a few times a day with EXC_RESOURCE CPU in the com.apple.libdispatch-manager queue. they all look like the crash report below. i'm developing an app that uploads a single zip file of ~150MB at a time to amazon S3 using a background NSURLSession upload task. there's nothing special set on the request. this results in the task not actually succeeding and when I launch my app it hangs on [NSURLSession sessionWithConfiguration:delegate:delegateQueue:] for 60s or so until it comes back to life and finally starts processing the task. is this a known problem?Incident Identifier: C00DFA73-0F0B-4CAF-A646-DFDA7D397C8FCrashReporter Key: df9dd31157b8b930a014e9b2fd8c974fb4fb60aaHardware Model: iPhone6,1Process: nsurlsessiond [129]Path: /usr/libexec/nsurlsessiondIdentifier: nsurlsessiondVersion: ???Code Type: ARM-64 (Native)Parent Process: launchd [1]Date/Time: 2015-06-18 09:51:29.740 -0400Launch Time: 2015-06-18 09:24:35.568
9
0
3.1k
Jun ’15
Xcode Version 6.3.2 crashes
Xcode Version 6.3.2 crashes every time I'm clicking Submit to Appstore button in organizer.rocess: Xcode [827]Path: /Applications/Xcode.app/Contents/MacOS/XcodeIdentifier: com.apple.dt.XcodeVersion: 6.3.2 (7718)Build Info: IDEFrameworks-7718000000000000~2Code Type: X86-64 (Native)Parent Process: ??? [1]Responsible: Xcode [827]User ID: 502Date/Time: 2015-06-18 15:48:35.973 -0400OS Version: Mac OS X 10.10.3 (14D136)Report Version: 11
4
0
347
Jun ’15
Reply to swift 2 syntax changes
If you're going to ask for help with error messages, it would be helpful if you can post the actual error message too. Anyway, try:var request: SKProductsRequest = SKProductsRequest(productIdentifiers: Set<NSObject>)func paymentQueue (queue: SKPaymentQueue!, removedTransactions transactions: [AnyObject]!) {You can look this sort of thing up yourself, using the the documentation in Xcode or at the Apple developer web site: just search for the class/protocol, and look for the method in the class/protocol-specific document. The syntax is right there.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
iOS performs scan request for desired device but no didDiscoverPeripheral callback
I am scanning for a device by its advertised service UUID in the advertisement payload. In both foreground and background, I have observed the mobile device sending a scan request packet, the device sending a scan response packet, but no didDiscoverDevice delegate method is invoked in the application.Has anyone else experienced similar behavior? I would assume that with the initial advertisement and the scan request (that contains device name and some other stuff) the CBPeripheral object would have everything it needs to be created. Can anyone speak to this?
0
0
459
Jun ’15
Significant change to connection interval and packets per interval
I have noticed some significant changes to iOS bluetooth low energy connection interval and allowed packets per interval. I'm using a maker ble device to transmit sensor data at high rates, quick connect and disconnect because the user comes in and out of range frequently. I can request connection interval updates peripheral side and have done some timing to see how many packets are transmitted per interval. iOS 8.1 seems to allow connection interval of 18.75 ms with 7 packets per interval.iOS 8.3 seems to allow connection interval of 15.0 ms with 3 packets per interval.I want to transfer 100 notification packets, with the above info my transfer is roughly cut in half!!iOS 8.1 takes approx .267 seconds (100/7*18.75 ms)iOS 8.3 takes approx .5 seconds (100/3*15 ms)I watched a protocol trace with my Apple Watch connecting and it showed a connection interval of 30 ms and during high data transfers as many as 7 notification packets per interval (Handoff in action!)Anyone else requesting a connect
0
0
1.9k
Jun ’15
Reply to swift 2 syntax changes
Yep, you're right. I didn't pay attention to the first half of the line.Given that it's 'productID' rather than 'productIDs', perhaps what's really wanted is:var request: SKProductsRequest = SKProductsRequest(productIdentifiers: [productID])leaving it to the compiler to construct a Set from the array literal. But we'd really need to see the error message.
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
When will Xcode 7 submissions be allowed?
My app uses some assembly, and I would like to test the new submission process (with bitcode enabled).Currently iTunes Connect is rejecting apps generated with Xcode 7 beta.When are Xcode 7 submissions going to be allowed?I hope it is before the beta is over. One of the key things we need to test in the beta is bitcode and how it affects our app.Thanks!-David
7
0
1.4k
Jun ’15
Since Apple finishes the app compilation process, how can dSYMs be obtained?
At WWDC, it was announced that when iOS 9 is released, all apps must be submited in bitcode. Apple will finish the compilation process on the server side. Many 3rd party crash reporting vendors require dSYMs in order to symbolicate crashes. Will dSYMs be made available to 3rd parties?If so via what means? I assume some security would be put in place.If the dSYM is not made available to 3rd parties, will the dSYMs be made available to the app developer?Finally, how often will apps be recompiled (ie. how frequently would the dSYMs change)?Thanks,-David
2
0
524
Jun ’15