Search results for

Request failed with http status code 503

190,575 results found

Post

Replies

Boosts

Views

Activity

Reply to Create an app
You could start by using the resources you paid for that are found in the Dev Center. See:- View guides and sample code- iOS Developer Library Also, take time to view the WWDC Videos to help understand the latest new tools, etc.Good luck in any case.
Jun ’15
Swift 2 crashing on where clause inside if-let
Converting my app to use Swift 2, and I'm getting a crash on this if-let where clause (that worked in 1.2):Used to look like this:if showFilterButton { if let dataController = dataController() as? FilteredCoreDataController, filter = dataController.filter where filter.customized { filterButton = UIBarButtonItem(image: UIImage(named: FilterFilled), style: .Plain, target: self, action: showFilters:) } else { filterButton = UIBarButtonItem(image: UIImage(named: Filter), style: .Plain, target: self, action: showFilters:) } } else { filterButton = nil }But it crashes on line 2. Finally discovered that removing the where clause doesn't crash the app (but obviously doesn't give me the behavior I want). Thought it was something weird like Apple changing how where clauses with in an if-let clause, but even separating it out into a nested if doesn't work:if showFilterButton { if let dataController = dataController() as? FilteredCoreDataController, filter = dataController.filter {//where filter.customized { if filter.cu
1
0
472
Jun ’15
Reply to El Capitan download link not working
Haha so I got it to work. Go into the Mac App Store and go to Redeem and enter your code. Click Redeem super fast until it lets you in. I had to click it over 15 times and it finally went through. It will keep showing you errors but keep clicking the Redeem button really fast and it should work. Its downloading into Launchpad by the way.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Contact the App Review Team page not working
I'm having the exact same issue so it's not just you. It goes here:https://developer.apple.com/register/completeRegistration.action?cancelURL=https%3A%2F%2Fdeveloper.apple.com%2Fprograms&successURL=https%3A%2F%2Fdeveloper.apple.com%2Fcontact%2Fapp-store%2F%3Ftopic%3DexpediteI am a long time registered developer, so I don't know why it's taking me to completeRegistration.action, but I'd be happy to do whatever is required there if was not just Page Not Found.
Jun ’15
No Service
In the past week, my iPhone 6 (Verizon, iOS 8.4 b3) has lost the ability to connect to cellular. Restoring to 8.4b3 and 8.3 haven't helped. Sometimes shows full service but with 1x in the status bar and can't actually connect to make a call or text or any data. I believe it may be a hardware issue, but I wanted to see if anyone else was experiencing this?
1
0
441
Jun ’15
iTunes Connect: Invalid Binary on submission
I'm trying to upload a new version of an app to iTunes Connect but everything I've tried so far has resulted in a Invalid Binary report by iTunes Connect. I have the Archive action set to Release and all schemes set to use the distribution certification and profile. Everything archives fine and the binary validates, but after uploading to iTunes Connect the binary moves into the Invalid Binary state and I get the following email:Invalid Signature - Code object is not signed at all. Make sure you have signed your application with a distribution certificate, not an ad hoc certificate or a development certificate. Verify that the code signing settings in Xcode are correct at the target level (which override any values at the project level). Additionally, make sure the bundle you are uploading was built using a Release target in Xcode, not a Simulator target. If you are certain your code signing settings are correct, choose Clean All in Xcode, delete the build directory in the Finder, a
2
0
4.5k
Jun ’15
Software Update failed to install
I have the Watch 2 Beta 1 profile installed on both my iPhone and Apple Watch. I downloaded the update through the Apple Watch app, but when it goes to install it says it failed to install. Both the watch and iPhone are fully charged and plugged in, and both have been restarted. Any ideas?
4
0
1.1k
Jun ’15
Reply to can't download
I would guess thay means that your *primary* email address is still failing verification. Try to re-verify it. Do you see an error message? If so, then you may have that email address associated with another Apple ID - perhaps with an Apple ID that is the same as that email address. In that case you'd need to log into that Apple ID, delete the primary email for it, and provide a new, different email address to verify it with.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Is there a way to use the Spotlight API to search content that's on a server instead of stored locally in the app?
It seems possible, I mean, your app would need to be aware of the content on the server. You would need to fetch certain data from the server to create the CSSearchableItem, and then fetch the whole item to display when you get the unique identifier from application:continueUserActivity:restorationHandler:. Of course you would want to store some stuff locally so you don't make tons of requests.I also saw a Web markup item on the search overview in this page (https://developer.apple.com/ios/pre-release/) the documentation link for it seems broken though.
Topic: App & System Services SubTopic: General Tags:
Jun ’15
NSURLConnection SSL error
I got following error when reqeust data from non-ssl protocol with NSURLSeesion API. I think it because of ATS in iOS9. Anyone knows what I should put in plist to opt out ATS?-- ATS description from release note--App Transport SecurityApp Transport Security (ATS) lets an app add a declaration to its Info.plist file that specifies the domains with which it needs secure communication. ATS prevents accidental disclosure, provides secure default behavior, and is easy to adopt. You should adopt ATS as soon as possible, regardless of whether you’re creating a new app or updating an existing one.If you’re developing a new app, you should use HTTPS exclusively. If you have an existing app, you should use HTTPS as much as you can right now, and create a plan for migrating the rest of your app as soon as possible.---error---Error Domain=NSURLErrorDomain Code=-1200 An SSL error has occurred and a secure connection to the server cannot be made. UserInfo=0x7fcfebe17cc0 {NSURLErrorFailingURLPeerT
2
0
6.2k
Jun ’15
Passing Data from View Controller to Label in TableView
I am trying to pass data from one view controller to another view controller. Here is my code so far that I have tried, but I keep getting an error when using this code. The error says, Outlets cannot be connected to repeating content.-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender { SchoolLocationViewController *schoolLocation = [segue destinationViewController]; if ([sender isEqual:btnAbington]) { schoolLocation.campusLocation = schoolLocation.campusLabel.text = @Abington; } }
2
0
280
Jun ’15
Binary operator cannot be applied: NSCalendarUnit
Have the following code running in 7.0 beta (7A120f) - didn't see that as a topic in the beta forum...adjusting to the forum change.let dateComponentsFormatter = NSDateComponentsFormatter() dateComponentsFormatter.allowedUnits = NSCalendarUnit.Day | NSCalendarUnit.Hour | NSCalendarUnit.Minute | NSCalendarUnit.SecondReceiving the following build error: Binary operator '|' cannot be applied to two NSCalendarUnit operands.Did not see this error in Xcode 6, not sure if this should be filed as a bug report at this juncture. Other solutions offered by the interwebs proving unviable.Thoughts?Cheers,Josh
4
0
3.1k
Jun ’15