Search results for

We are unable to process your request

69,585 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
92
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.2k
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
696
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