Search results for

Request failed with http status code 503

190,703 results found

Post

Replies

Boosts

Views

Activity

Can't login to my Apple ID in iMessage
Hey there, community. I've been wondering why imessages were only landing on my laptop/imac and I just realized that after installing iOS9, iMessage was disabled. I enabled it, tapped Use your Apple ID for iMessage, entered my credentials and, after about 20sec of waiting, I was promptly prompted to enter them again (with no error message). Obviously I tried several times with no luck. Right now, iMessage is stuck in waiting for activation. Also, I just got a pop-up asking me to enter my iCloud password, I did and got back an error saying Verification Failed, An unknown error occured Cancel/Try AgainProblems with iCloud ?
5
0
22k
Jun ’15
Reply to almost afraid to ask on new background modes.
You absolutely have to file enhancement requests and bug reports making your case for the features that you want that iOS doesn't yet support. You probably won't get any direct feedback unless there's difficulty understanding something in your report, but it's still necessary.On the other hand, it's important to remember that Apple applications have both a longer leash (Apple makes the rules) and a shorter leash (Apple's going to be more conservative about most things). The complication with doing a specific task that lasts less than 10 seconds at a specific date and time in the future is one of managing when a dozen different applications all want to do something at the same time. Who goes first? How much time do the have? How does the user tell what's going on? If the foreground application is hogging resources, do you launch late? What happens when you crash in the background?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to The core Idea Of Metal
Yes.A central focus of Metal is to dramatically reduce the CPU cost of common operations. However, it is still quite possible for wasteful code to blow out the CPU cost and end up running slowly and eating up a bunch of battery life. That is, even though the CPU and GPU can run concurrently, your GPU frames can't cycle any faster than the CPU workload required to encode / enqueue them. Thus, quite a lot of making Metal go fast can be making sure that your CPU workload isn't consuming all your time. For me, the CPU cost is usually around 10% or less of the GPU time in well behaved code. If you are running more than that, then you may need to spend some time finding out why.Most of the time, it comes down to object reuse. It is maybe the key way to improve Metal performance. Much of Metal is designed around the assumption that you will allocate expensive resources (textures, buffers, shaders, queues) up front and then reuse them. As an application writer, this is fairly simple, since you shoul
Topic: Graphics & Games SubTopic: General Tags:
Jun ’15
Software Documentation - A Standard
I know that there are no set standards or rules for software docuemntation. I am not sure if this is good or bad? I am busy creating my first Software Document for my organisations solution. Our solution is pretty standard. It is a mobile application for iPhone, iPad, Apple Watch and Android [Not sure if im allowed to say that here]. The docuemnt is not a user manual but an internal document which will explain the architechture, lifecyle, deployemnt procedures etc. I have scoured the net looking for resources on best practice, templates, examples and the like. I was wondering if I have missed something but I cant find any sort of standard or commonly defined structure for these documents. It seems to be a company by company type approach with each company writing the document in a way they feel is best.I hope I am wrong. Can anyone shed some light?Thank you very much indeed. I must also appologise in advance if I put this request for information in the wrong place. I dont see an applicaple (post depl
2
0
276
Jun ’15
Answer to Java SE 6 problem for El Capitan
Hello! I have searched around the web for finding a solution to the Java SE 6 Runtime that cannot be installed and doesn't allow apps to work as suppose. So while searching the web I found different articles about uninstalling it and deleting the newer version...ect. Nothing worked so I thought what if you go the opposite way instead of deleting it you make your apps think that your Java SE 8u45 is your Java SE 6. Well this article finally helped me http://stackoverflow.com/questions/19563766/eclipse-kepler-for-os-x-mavericks-request-java-se-6/19594116#19594116You will have to change the code and add your version of Java and dont forget to log out and back on!!!HOPE THIS HELPS!!!
1
0
497
Jun ’15
AVSampleBufferDisplayLayer - Operation Interrupted
Hello,I am writing a simple app to play an H264 video stream (received over the network) using AVSampleBufferDisplayLayer.After random amount of time, my AVSampleBufferDisplayLayer instance changes its status to AVQueuedSampleBufferRenderingStatusFailed and the error is2015-06-10 10:20:48.235 H264Player[2095:951683] Error Domain=AVFoundationErrorDomain Code=-11847 Operation Interrupted UserInfo=0x156a5390 {NSLocalizedRecoverySuggestion=Stop other operations and try again., NSUnderlyingError=0x16d783b0 The operation couldn’t be completed. (OSStatus error -12084.), NSLocalizedDescription=Operation Interrupted}According to AVFoundation error codes (found here : https://developer.apple.com/library/prerelease/ios/documentation/AVFoundation/Reference/AVFoundation_ErrorConstants/index.html#//apple_ref/doc/constant_group/Error_Codes)The error is related to an AVAssetWriter, AVAssetReader or AVAssetExportSession.My app does not do any use of those classes.I am loking for any idea ho
0
0
933
Jun ’15
about homekit write data error
Problem reference title . When I send data to the device there is a problem. device is a lamp NSNumber *num = [[NSNumber alloc]initWithInt:100]; [characteristic4 writeValue:num completionHandler:^(NSError *error){ if (error) { NSLog(@%@,error); }else{ NSLog(@send Successful); } }];2015-06-10 17:25:43.235 myhome[1358:349977] Error Domain=HMErrorDomain Code=20 Nil parameter UserInfo=0x1758d670 {NSLocalizedDescription=Nil parameter}
0
0
181
Jun ’15
iOS 9 Common Siri Problems
First, Siri is having problem with some commands. Sometimes it responds but not following the command and sometimes it crashes.Take a look.https://pbs.twimg.com/media/CHIW2kTVAAAhW2J.pngSecond, Siri button on Assistive Touch is disabled while on the home screen even Siri is enabled, Take a look. https://pbs.twimg.com/media/CHIWjpUUgAA1apm.jpgThird, As I said earlier Siri button on Assistive Touch is disabled but this time while using Siri. Take a look.https://pbs.twimg.com/media/CHIXD53UwAAi55E.png
0
0
892
Jun ’15
Xcode 7 - new feature UITesting - no recording button !
I'm trying to get the User Interface Testing working with my appplication.I created a UI Test Case Class, reproduced the code shown in What's new in Xcode presentation.And somehow, I cannot find the recording button, in order to record the different actions I want to test and approve.Can you please let me know how to get this to work, I'm bashing my head over this for few hours.Thanks
6
0
6.3k
Jun ’15