Search results for

Request failed with http status code 503

190,710 results found

Post

Replies

Boosts

Views

Activity

Reply to Must call a designated initializer of the superclass 'UITableView'
The init changed, the code that fixed the issue is this oneinit() { super.init(frame: CGRectZero, style: UITableViewStyle.Plain) initialize() } required init(coder aDecoder: NSCoder) { super.init(coder: aDecoder) initialize() } init(frame: CGRect) { super.init(frame: frame, style: UITableViewStyle.Plain) initialize() } override init(frame: CGRect, style: UITableViewStyle) { super.init(frame: frame, style: style) initialize() }
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
UIKeyboardTypeDecimalpad
When use UIKeybaordTypeDecimalPad in iOS8 or above will get minor problem for the keybord, the point position is not in the central of the key. Detailed question description please refer http://stackoverflow.com/questions/26965001/xcode-6-1-ios-8-keyboard-decimal-pad-is-not-properly
Topic: UI Frameworks SubTopic: UIKit Tags:
0
0
666
Jun ’15
Reply to Converted 32bit to 64bit app Crashes
Yup, so the crash log isn't really useful on its own.I recommend you put breakpoints into your code, run it and step over line by line and see exactly the lines where it crashes. We can't do that for you, you have to do it. Have a look in the Apple debugger documentation if you don't know how to do it. In my experience, crashes in my code on arm64 have been regular bugs in the code that caused memory access issues that didn't crash on armv7 but do crash on arm64. But they were still bugs. In some situations they didn't crash on the simulators but do crash on real devices. Run using the debugger on real devices if you can.
Jun ’15
Account abnormal
I want to add a new AppID, but the error dialog is saying The selected team's agent, 'xxx' must agree to the latest Program License Agreement. Please visit the Member Center. https://developer.apple.com/membercenterWhere should I navigate to for the latest Agreement?Also, i checked the page Legal Agreement, the date of the 2 agreement Apple Developer Program License Agreement and Registered Apple Developer Agreement is Jun 08, 2015. Does it mean it's expired? How to renew it?Thanks,Lei
0
0
468
Jun ’15
Promo codes link missing
i can't seem to find the Promo Codes link. It isn't down at the bottom where it usually is. I've hunted around but can't find it anywhere.is this the same for everybody?How else can I get to the Promo codes section, to generate some free copies of my game?I Can't do good promo without the codes!(logged in as Admin, so there's no reason it shouldn't be there.)
10
0
706
Jun ’15
Reply to iOS 9b1: Podcast app crashes on startup
Hi,seeing the same thing here. Also tried to delete all podcasts by removing them from the sync in iTunes. I haven't tried to reinnstalling, but attached is the crash-log.Incident Identifier: B5F20F2E-F1DF-469D-B710-8DEE3DC9104BCrashReporter Key: fb29f236715284e01c3ca12533f80c13bbf8eb99Hardware Model: iPhone7,2Process: Podcasts [425]Path: /Applications/Podcasts.app/PodcastsIdentifier: com.apple.podcastsVersion: 967.2 (2.3)Code Type: ARM-64 (Native)Parent Process: launchd [1]Date/Time: 2015-06-10 13:18:56.56 +0200Launch Time: 2015-06-10 13:18:55.55 +0200OS Version: iOS 9.0 (13A4254v)Report Version: 105Exception Type: EXC_CRASH (SIGABRT)Exception Codes: 0x0000000000000000, 0x0000000000000000Exception Note: EXC_CORPSE_NOTIFYTriggered by Thread: 7Filtered syslog:None foundLast Exception Backtrace:0 CoreFoundation 0x182f93f44 0x182e6c000 + 12122281 libobjc.A.dylib 0x197faff2c 0x197fa8000 + 325562 CoreFoundation 0x182f93e8c 0x182e6c000 + 12120443 Foundation 0x183e10f0c 0x183e04000 + 530044 Podcast
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Where is the page to submit the extension?
Where is the page to submit the extension?This page [1] says it's at [2] where as [2] is 404[1]- https://developer.apple.com/library/safari/documentation/Tools/Conceptual/SafariExtensionGuide/DistributingYourExtension/DistributingYourExtension.html#//apple_ref/doc/uid/TP40009977-CH19-SW2[2]- https://developer.apple.com/safari/extension-submission/How to submit an extension in the extension galary??
6
0
575
Jun ’15
unoptimized msaa resolve
I'm getting this message in Instruments. Does anyone know what that means?This is the code I'm using:- (void)drawViewVSync:(id)sender { if (m_initialized) { if (m_multiSampling) glBindFramebuffer(GL_FRAMEBUFFER, m_msaaFramebuffer); else glBindFramebuffer(GL_FRAMEBUFFER, m_viewFramebuffer); m_pGame->Render(); if (m_multiSampling) { glBindFramebuffer(GL_READ_FRAMEBUFFER_APPLE, m_msaaFramebuffer); glBindFramebuffer(GL_DRAW_FRAMEBUFFER_APPLE, m_viewFramebuffer); glResolveMultisampleFramebufferAPPLE(); const GLenum attachments[] = {GL_DEPTH_ATTACHMENT, GL_COLOR_ATTACHMENT0}; glDiscardFramebufferEXT(GL_READ_FRAMEBUFFER_APPLE, 2, attachments); } else { const GLenum discards[] = {GL_DEPTH_ATTACHMENT}; glDiscardFramebufferEXT(GL_FRAMEBUFFER,1,discards); } glBindRenderbuffer(GL_RENDERBUFFER, m_viewRenderbuffer); [m_context presentRenderbuffer:GL_RENDERBUFFER]; } }
2
0
748
Jun ’15
Can't submit app - "Invalid Signature - Code object is not signed at all"
Hello,I have submitted my app build from xCode on May 30, 2015. It passed all validations during submission and successfully appeared in iTunes Connect.Then I realized that there are few things that I want to fix before letting Apple start reviewing.Starting from yesterday (June 9) I am trying to submit another build for the same application using the same configurations and same xCode method for submission, but what I get is:Invalid Binary in the status line for all newly uploaded buildsAn email from iTunes Connect after each build upload, with this error description: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 Simul
3
0
3.6k
Jun ’15
Delete App from iTunesConnect
During my issues uploading my app from this thread, I made a test app on ITC. Now I can't figure out how to delete it! I even uploaded a test executable and rejected it to get the status to Developer Rejected, and changed the pricing page to be available nowhere starting 2016. Shouldn't there be a Delete option under the More^ menu? All the refefences I found searching the internet are from the old ITC website. Thanks,
7
0
734
Jun ’15