Search results for

“We are unable to process your request”

73,270 results found

Post

Replies

Boosts

Views

Activity

iPad folders
I appriciate that apple brings all these new productivity features to the iPad with iOS 9.But folders on iPad is a joke. Half of the screen real estate is wasted. Before iOS 7, folders on iPad could contain 20 apps in a single view.But with iOS 7, multiple views has been introduced and maximum apps you can see in a single view is 9 apps in both ipad and iphone.It has been 2 years and apple should fix it. They should do it by viewing 4*4 = 16 apps in iPad's folders. Also that way it'll look same both portrait and landscape.It may seem like a trivial feature request for some of you. But it's important to me.I want to see more of my productivity folder apps or video folder apps in a single view.
0
0
99
Jun ’15
Reply to Can't fetch JSON due to NSInvalidArgumentException
Looking at that code, I would suspect the data is nil error is coming from some other place, not from your NSURLSession completion block. If you are positive that's where the crash is, then if error is nil and data is nil, there must be an error HTTP response. Perhaps you're using the iOS 9 SDK and are getting tripped up by App Tranport Security. I do think you need to code more defensively there (check if data is nil, and check the HTTP response code).Anyway here's one big thing that won't work with that code: NSURLSession is an asynchronous API. The completion block has not yet been called (most likely the request hasn't even gone out) by the time you hit that code that's attempting to parse the result. It's like you asked your roommate to go to the store and get some beer and put it in the fridge, then immediately went to the fridge and tried to pour out a beer. It's just not there yet. You need to defer all that parsing stuff until after the result comes in (i.e. put it in a separate method and c
Jun ’15
Reply to app crashes during the review
Good work. You just need to upload the new binary from Xcode, then after the build has finished processing (usually just a few minutes) go to the new app version in iTunes Connect, select the new binary you just uploaded, save and Submit for Review again. Unfortunately a new binary always means a whole new review cycle (they don't know what else you may have changed).
Jun ’15
Reply to Scheduled, background process
There's no API on iOS that will run your app code at any specific schedule in the background. It sounds like you've considered all the options. I think you'll have to submit a feature request describing your use case and hope for the best in a future iOS version.I suspect the problem with any such API is that some developers would abuse the heck out of it, running continuously in the background and destroying battery life. And of course Apple would get blamed. But if they could figure a way to prevent abuse somehow, it certainly would be useful for many cases.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jun ’15
Reply to AVAudioEngine synchronize with AVPlayer
To really get an idea of how creating a clock using for example CMAudioClockCreate (on iOS) is useful when assigned to an AVPlayer masterClock and used with the method setRate: time: atHostTime: when syncing with user generated audio, it's recommended that you watch the WWDC presentation from 2012 called Real-Time Media Effects and Processing during Playback. Starting at 11 minutes into the presentation the subject Syncronizing Video to Custom Audio is discussed in depth. However, you'll probably want to start at the beginning to experience an excellent explanation of Time and CMTime and clocks in general.You'll find this presentation super helpful and I'm sure it will clear up some of the hazy bits.https://developer.apple.com/videos/wwdc/2012/#517
Topic: Media Technologies SubTopic: Audio Tags:
Jun ’15
unable to renew my program account
Hi, I want to renew my developer account, but when I pay by visa credit card, always an error Your payment authorization failed. Please verify your information and try again, or try a different payment method.And my acount program showed Your Program purchase is pending. Once successfully processed, you will receive an email from Apple Developer Support. If you have not already purchased your Program, you may do so now.
7
0
1.3k
Jun ’15
Authorizing "Always" CoreLocation from watchOS2
Hi,I'm having trouble reconciling the behaviour I'm seeing when requesting location authorization from the Watch Extension with the information provided at WWDC's What's New in Core Location session.Here's what's happening (this assumes a new install of the app):In the watch extension, if I call CLLocationManager.requestAlwaysAuthorization(), the CLManageDelegate's locationManager(manager:didChangeAuthorizationStatus:) is called with .NotDetermined.The authorization UI appears on the Watch and iPhone as described during the session, using the iPhone's info.plist's NSLocationAlwaysUsageDescription value for the phone's prompt. The watch shows a message to check the phone with a Dismiss button, as expected.If I authorize on the phone, the watch 's message auto-dismisses (great!) but the watch does not receive another didChangeAuthorizationStatus: message with updated authorization.Now…If I subsequently check the status on the phone, it's .AuthorizedAlways.If I subsequently check the status on the watch
2
0
701
Jun ’15
Bundle Identifier Change Core Data Lost
Hello,I changed a project from Objective-C to Swift and created a whole new project when I did this. I have an app in the AppStore and wanted to send an update instead of releasing a new app. I understand that my Bundle Identifier needs to be the same when updating an app. When preparing the app for release, I changed my Bundle Identifier to match my app in the AppStore - since I started with a new project - and in the process my Core Data file seems to be missing. If I change my Bundle Identifier how do I keep access to Core Data?Take care,Jon
3
0
3.9k
Jun ’15
iPad folders
I appriciate that apple brings all these new productivity features to the iPad with iOS 9.But folders on iPad is a joke. Half of the screen real estate is wasted. Before iOS 7, folders on iPad could contain 20 apps in a single view.But with iOS 7, multiple views has been introduced and maximum apps you can see in a single view is 9 apps in both ipad and iphone.It has been 2 years and apple should fix it. They should do it by viewing 4*4 = 16 apps in iPad's folders. Also that way it'll look same both portrait and landscape.It may seem like a trivial feature request for some of you. But it's important to me.I want to see more of my productivity folder apps or video folder apps in a single view.
Replies
0
Boosts
0
Views
99
Activity
Jun ’15
Reply to iPhone and iPad both taking longer times to load since iOS update
on my iphone 6 im experiencing around 5 min. waits to start and once it does it will freeze on a random app and then ill have to go through the whole restart process again.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
The item you've requested is not currently available in the Swiss Store, but is available in the U.S. Store.
Anyone know how to distribute your app to other international app stores? If I look in iTunes, I see it available as I change my locale, but we have people in Switzerland that get this message when searching for our app.Any help is greatly appreciated!
Replies
0
Boosts
0
Views
278
Activity
Jun ’15
Reply to Can't fetch JSON due to NSInvalidArgumentException
Looking at that code, I would suspect the data is nil error is coming from some other place, not from your NSURLSession completion block. If you are positive that's where the crash is, then if error is nil and data is nil, there must be an error HTTP response. Perhaps you're using the iOS 9 SDK and are getting tripped up by App Tranport Security. I do think you need to code more defensively there (check if data is nil, and check the HTTP response code).Anyway here's one big thing that won't work with that code: NSURLSession is an asynchronous API. The completion block has not yet been called (most likely the request hasn't even gone out) by the time you hit that code that's attempting to parse the result. It's like you asked your roommate to go to the store and get some beer and put it in the fridge, then immediately went to the fridge and tried to pour out a beer. It's just not there yet. You need to defer all that parsing stuff until after the result comes in (i.e. put it in a separate method and c
Replies
Boosts
Views
Activity
Jun ’15
Reply to app crashes during the review
Good work. You just need to upload the new binary from Xcode, then after the build has finished processing (usually just a few minutes) go to the new app version in iTunes Connect, select the new binary you just uploaded, save and Submit for Review again. Unfortunately a new binary always means a whole new review cycle (they don't know what else you may have changed).
Replies
Boosts
Views
Activity
Jun ’15
Reply to Scheduled, background process
There's no API on iOS that will run your app code at any specific schedule in the background. It sounds like you've considered all the options. I think you'll have to submit a feature request describing your use case and hope for the best in a future iOS version.I suspect the problem with any such API is that some developers would abuse the heck out of it, running continuously in the background and destroying battery life. And of course Apple would get blamed. But if they could figure a way to prevent abuse somehow, it certainly would be useful for many cases.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jun ’15
iPhone unable to Push Information to Apple Watch
I updated my iPhone 6 to iOS 9 beta 1 yesterday, and since then I never receive a notifaction on my Watch, and I'm unable to open apps on my Apple Watch. Is this my bluetooth issue or it's a bug in beta?iPhone 6, iOS 9 beta 1 (13A4254v)Apple Watch, watchOS 1.0.1 (12S632)
Replies
1
Boosts
0
Views
149
Activity
Jun ’15
Reply to Uploading App video preview for iTunes Connect
Not part of the sim, but what about using QuickTime Player? It has a feature to record just part of the screen. Then use HandBrake to process, etc.◅▻
Replies
Boosts
Views
Activity
Jun ’15
Reply to AVAudioEngine synchronize with AVPlayer
To really get an idea of how creating a clock using for example CMAudioClockCreate (on iOS) is useful when assigned to an AVPlayer masterClock and used with the method setRate: time: atHostTime: when syncing with user generated audio, it's recommended that you watch the WWDC presentation from 2012 called Real-Time Media Effects and Processing during Playback. Starting at 11 minutes into the presentation the subject Syncronizing Video to Custom Audio is discussed in depth. However, you'll probably want to start at the beginning to experience an excellent explanation of Time and CMTime and clocks in general.You'll find this presentation super helpful and I'm sure it will clear up some of the hazy bits.https://developer.apple.com/videos/wwdc/2012/#517
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jun ’15
unable to renew my program account
Hi, I want to renew my developer account, but when I pay by visa credit card, always an error Your payment authorization failed. Please verify your information and try again, or try a different payment method.And my acount program showed Your Program purchase is pending. Once successfully processed, you will receive an email from Apple Developer Support. If you have not already purchased your Program, you may do so now.
Replies
7
Boosts
0
Views
1.3k
Activity
Jun ’15
Authorizing "Always" CoreLocation from watchOS2
Hi,I'm having trouble reconciling the behaviour I'm seeing when requesting location authorization from the Watch Extension with the information provided at WWDC's What's New in Core Location session.Here's what's happening (this assumes a new install of the app):In the watch extension, if I call CLLocationManager.requestAlwaysAuthorization(), the CLManageDelegate's locationManager(manager:didChangeAuthorizationStatus:) is called with .NotDetermined.The authorization UI appears on the Watch and iPhone as described during the session, using the iPhone's info.plist's NSLocationAlwaysUsageDescription value for the phone's prompt. The watch shows a message to check the phone with a Dismiss button, as expected.If I authorize on the phone, the watch 's message auto-dismisses (great!) but the watch does not receive another didChangeAuthorizationStatus: message with updated authorization.Now…If I subsequently check the status on the phone, it's .AuthorizedAlways.If I subsequently check the status on the watch
Replies
2
Boosts
0
Views
701
Activity
Jun ’15
Complications on Photo Face?
Anyone else submit bug/request report about this? I would love to have my own photos as my watchface, but don't want to sacrifice all of my complications just to do this.
Replies
0
Boosts
0
Views
198
Activity
Jun ’15
Reply to CloudKit Operation Speeds
56 seconds sounds awfully excessive for that amount of data.I would run the requests through a debugging proxy such as Charles to verify exactly how long the network requests are taking.
Replies
Boosts
Views
Activity
Jun ’15
Bundle Identifier Change Core Data Lost
Hello,I changed a project from Objective-C to Swift and created a whole new project when I did this. I have an app in the AppStore and wanted to send an update instead of releasing a new app. I understand that my Bundle Identifier needs to be the same when updating an app. When preparing the app for release, I changed my Bundle Identifier to match my app in the AppStore - since I started with a new project - and in the process my Core Data file seems to be missing. If I change my Bundle Identifier how do I keep access to Core Data?Take care,Jon
Replies
3
Boosts
0
Views
3.9k
Activity
Jun ’15
Reply to Bundle Identifier Change Core Data Lost
I'm betting you did a bad thing in the process of conversion.
Replies
Boosts
Views
Activity
Jun ’15