Search results for

We are unable to process your request

69,585 results found

Post

Replies

Boosts

Views

Activity

Reply to download ios 9 beta
Are you in a paid developer program? Did you accept/request the newest agreements/contracts (check both Member Center & iTunes Connect)Does this link work for you? DownloadIf so, that is where the iOS 9 beta can be downloaded.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Watch app does not update...
I can not get the CMD-R run function to update my watch display. I have made changes to my storyboard yet when I run the app again (and again), there is no change in the view. My changes to the view include resizing and changing the alignment of a group within a group. I've delete the app from my phone and had mixed results with running the app again. Sometimes the app won't appear on the watch face with the xcode display showing Waiting to attach. What techniques do I need to use to avoid any associated bugs or other issues with the two devices communications to get through the development process with less hassle?
1
0
183
Jun ’15
Reply to Application Transport Security ?
That's good if you've found your solution, however a word of caution re the iOS9 beta and HTTPS: at least one bug exists where legitimate HTTPS URLs are not seeing successful connections because of an SSL bug. See my issue here: https://forums.developer.apple.com/thread/4988 - although this is an SSL issue to do with Mapkit URLs, I would expect it'd be affecting more than just those. Most SSL issues resolve down to a lack of trust; by design if anything in the trust checklist between two parties doesn't succeed, the whole request fails. Anyway, regarding this beta and its SSL problem, if I find a way of working around this, I'll update that linked issue above.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Problem: Can't validate archive / The request timed out
When I validate an archive in XCode I now always get an error saying iTunes Store operation failed / The request timed out after exactly 30 minutes. (XCode->Archive->Validate...)I've recreated both the certificates and the provisioning profiles which didn't help. I then noticed that I don't get the error when I validate archives built from an older version of the app (fetching old version from source control & building archive & validating).Everytime I build the first version that includes GoogleMaps (1.10.1) I get that problem. When I remove GoogleMaps from my newest version the problem disappears. Due to the unspecific error message and to the fact that Apple support hasn't been able to help me yet I'm running out of options.Any ideas what could cause that problem?Any suggestion how I could find out more about the problem? (e.g logs, workarounds, different ways of doing the same etc...)Thanks for any input!
1
0
682
Jun ’15
SOCKS proxy not working
Is anyone else able to confirm that using ssh to provide a SOCKS proxy (-D) and then configuring the Mac to use it in sys prefs does not work in 10.11?I am seeing odd behaviour with certain apps such as:Twitter - posts load, but no imagesApp Store - unable to connect at allMessages - unable to send images, but basic text is okSafari - no pages loadChrome works fine, however.Every time I try to establish a connection to something via SOCKS the following is logged in the syslog:Jun 13 12:37:00 musclemass com.apple.WebKit.Networking[2182] <Error>: tcp_connection_destination_read_internal 5 not safe to enqueue read buffer variant requestJun 13 12:37:08 musclemass Twitter[709] <Error>: tcp_connection_destination_read_internal 558 not safe to enqueue read buffer variant requestI'm guessing this is due to new restrictions/security features within the OS?
3
0
3.8k
Jun ’15
Reply to ios 9 beta 1 fix battery
First of all, battery issues are not rare in betas. Apple is making it very clear that you shouldn't install these releases on devices other than for development.And secondly, these forums isn't the right place to post improvements or requesting bug fixes, here we discuss the problems and what can be done to improve the issues.When requesting new features, improvements and filing bugs, please go to http://bugreport.apple.com and file a radar.Happy bug hunting!
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Scheduled, background process
On WatchOS, there is a notification that seems to go off about ten minutes until the hour that reminds you to stand up and move around some. I know we can schedule local notifications, but when the notification is triggered how is Apple checking if they actually need to present the notification or not? For example, if I have stood in the past hour and moved around, there's no need to show me the notification at 10 minutes until the hour.My app runs on iOS. Reaching a goal is dependent on a user's last known action and the time elapsed since that last action. Currently, the user can launch my app and logic will be run to let them know their progress in reaching their goal. What I would like is the ability to run this logic in the background while the app is backgrounded (or even if it is killed). The end result for the user would be their iPhone is in their pocket and my app notifies them when the goal has been reached.There is not a server component to my app. I am aware of things like region monitoring, moni
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
817
Jun ’15
Reply to Need Help With WatchKit
on watchkit you can use the openParentApplication from the interface controller and in appDelegate you call handleWatchkitExtensionRequest. A couple of important points:I found I needed to open a background task at the beginning of handleWatchkitExtensionRequest and close it after my reply. This may have been due to the fact I was making an http request in the handle ExtentionRequest.Note that if you're doing an async request (such as getting data from the internet) you need to do the reply within the response handling of the async request.One thing I forgot...I told my app to allow background processes. (Background modes under capabilities) I'm not 100% sure this is necessary.
Topic: App & System Services SubTopic: General Tags:
Jun ’15