Search results for

We are unable to process your request

69,588 results found

Post

Replies

Boosts

Views

Activity

Request temporary one-time exemption to 64-bit deadline?
A client of ours finished QA testing an app update a week late and missed the cutoff for 32-bit support. The app is built on an old framework that is tightly integrated with libraries only built for 32-bit. We are fully aware that this stale code will need to be updated, but this update has already taken much more development time than anticipated, so we would like to make it available as soon as possible. Is there any process for requesting a one-time exemption to avoid delaying App Store submission any longer?
2
0
334
Jun ’15
OpenSSL headers
I've been trying to build my code under 10.11 and Xcode7 and it's failing as it's unable to find the OpenSSL headers, it seems that these are no longer included. Am I going to have to bundle my own version of OpenSSL going forward?
3
0
9.5k
Jun ’15
Why does the following code work?
Can sombody tell me why the following code works? I know that it does. Specifically, look at the 'dict' variable. It is used in the fast itteration for loop. But wait, it's also used within the completionHandler block of code, but it doesn't have a __block specifier. Why does this work? __block NSMutableArray *dumArray = [NSMutableArray arrayWithCapacity:3]; for (NSDictionary *dict in self.stuffArray) { NSURL *url = [NSURL URLWithString:urlString]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; request.timeoutInterval = kTimeoutInterval; [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) { if (data.length > 0 && connectionError == nil) { NSDictionary *message = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL]; NSDictionary *daDict = [message objectForKey:@result]; NSString *theInfo = daDict objectForKey:@“stuff”]]; NSMutableDictio
3
0
711
Jun ’15
Reply to Request temporary one-time exemption to 64-bit deadline?
There's exactly one thing you can do:1. Submit your application, and appeal the rejection if you're rejected for not having 64-bit code. It's anyone's guess whether your appeal will be successful, but that's really the only thing you can do.If the application submission process automatically rejects your app, then you're completely out of luck and you're just going to have to do whatever you have to do.
Jun ’15
CoreLocation: startUpdateLocation is unavailable
Hi,I'm in the process of moving CoreLocation logic from my iPhone app to my WatchOS app but get compile errors for startUpdateLocation stating it's unavailable.The actual compile error reads:CoreLocation.CLLocationManager:53:14: note: 'startUpdatingLocation()' has been explicitly marked unavailable here @objc func startUpdatingLocation()What's the recommended way to get location updates for WatchOS extensions?Cheers,Kristoffer
10
0
1.8k
Jun ’15
Reply to SIP (System Integrity Protection)
I'm thinking they're looking at it as a escalation to a circumvention process for SIP:Something happens, BadGuy process gets root/sudoUses it to then bless --netboot a remote BadGuy automation toolsetTriggers system rebootThen the machine reboots to the netboot volume, which bypasses the SIP protections since it could be a non-10.11 netboot without SIP itself - then modifies the local /System/whatever structure. Then re-blesses back to internal and reboots. SIP circumvented.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
nsurlsessiond issue using 100% CPU iOS 8.3
We have an application which downloads large amounts of data (10 files with a total of 5.8GB) using NSURLSession in the background. On iOS 8.3 and iOS 8.4 beta 3 we observed the following- The download sometimes suddenly stalls at around 1.2GB. Seems to happen on fat internet conenction with an iPad Air 2.- If we force terminate the App in this situation it can't be launched again. We have found that the nsurlsessiond is using 100% CPU and that the watchdog ist killing the App just after the launch as it is not responding. Looking at the crash report the creation of the NSURLSession [NSURLSession sessionWithConfiguration:delegate:delegateQueue:] seems to be waiting on a semaphore.This might be related to this post https://devforums.apple.com/message/1128072#1128072.I've attached the crash report below.Any ideas? We have filed this as Bug rdar://21300082Jakob------------------------------------------------------------------------Incident Identifier: 32D98114-3D3C-4C26-BFB5-F2984F6084DECrashReporter Key: 601353
0
0
1.3k
Jun ’15
how long does it take for reply from support?
thank you for helping...how long does it take to get a reply from support?my app has been approved and is in the transfer process from the developer to my account... i submitted the tax information & received a message popup stating that iTunes could not verify & would try again, later & would email me if they needed any addtional information...it has been 7 days and i even opened a ticket on the 3rd day... i have not received any email from iTunes other than confirmation of my support ticket...any idea how long the wait time is on this type of issue?thank you, again...------
0
0
1.5k
Jun ’15
Reply to Can watchOS send a local notification?
Currently to do this, I think it's like in watchOS 1 where you'd have to ask your main iOS App to set this up for you: use WKInterfaceController.openParentApplication(...)and then handle the request in your AppDelegate to set up the notifications. Make sure you do it in the background since the handleWatchKitExtensionRequest doesn't give you much time to process.
Topic: App & System Services SubTopic: General Tags:
Jun ’15
Reply to Change company name
If you mean the (dev) name shown by the app in the store, you need to have a company/LLC and then submit the necessary documentation to Apple.See:iOS Dev Center / Support / Account ManagementIf I am enrolled as an individual, can I change to a company membership? Yes. To convert your iOS Developer Program membership from an individual to a company, please contact us. You can make this change only if you are the founder/co-founder of the company. As part of the conversion process, you may be asked to submit business documents to verify your company's identity. ◅▻
Jun ’15
Unable to boot after installing beta OS
Hi,I am unable to start my Apple Watch anymore after installing the beta OS. Initially everything was good except the calendar information was not getting displayed. And I thought repairing the watch will fix the issue. However, it made it worse. I has 65% battery before the watch went off. Now it's connected to power but I am still unable to start it. Any suggestions? Thanks,Subh
3
0
483
Jun ’15
Privacy and your app session notes
Apple views privacy as a human rightApp developers - be mindful of privacyKeeping the app ecosystem as a trusted place is important.Architecting for privacyData retentionData privacyData storageIdentifiersData RetentionHave a retention policyDelete data when it no longer serves a user needCollect the minimum data necessaryBalance storage of data against the risk of compromiseData Minimization TechniquesAnonymizeAggregateSampleDe-resolveDecayMinimizeWhat's the use of the data? What decisions are the collected data driving? If you can't come up with an answer, don't collect it. Minimize.Data transferEncrypt data in transitKeep sensitive data on the device, do not transmitProcess sensitive data on-deviceA good example of sensitive data - health data for a workout app. Process it on the device.On Device- Data protection- Keychain - store your secrets inside a keychain's encrypted storageServer side- Encrypt data at rest- CloudKitTransparencyBe clear about what data is being collected- Give users the abil
0
0
1.3k
Jun ’15
unable to wake from sleep
Within the past 24 hours, the MBP failed to wake up from sleep twice. When I open the notebook, the screen was blank and would not respond to any input (keyboard, trackpad, etc.). The only way to bring it back is power cycle. Has anyone else experienced this issue?
36
0
17k
Jun ’15
Reply to iPhone + (null) (paired device OS version)
i was seeing this as well. Tried reboots of mac, phone, and watch. Lots of error messages being displayed in console. I reinstalled xcode, installed the watchos profile on my phone, I also switched to a different lightning cable in a different port. After that last one opening Xcode and my phone appeared along with the watch. I'm still seeing RST requests in console from my phone but Xcode is at least acknowledging the devices. It could see the phone on its own in non watch projects.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15