Search results for

Request failed with http status code 503

190,532 results found

Post

Replies

Boosts

Views

Activity

App special events
Some apps have special events that appear without an update to the app. I'm sure there's numerous ways to go about doing this but this is the way i've thought of; is there a more efficent way?Set a timer for the event start and stop and all of the code that utilizes this eventExmaple: code in a timer for the Event to start July 1st at 00:00 EST and end July 7th 23:59 EST and as long as that time is true the event will take place. Then on the next update simply remove the code for that event to free up some memory unless you plan on using that event again in the future.I'm not looking for any code here. Just thoughts about more efficent ways, if any, to do events like this without releasing an update. Thanks
1
0
343
Jun ’15
Why is Swift 2 switching from reStructuredText to Markdown?
I'm sure I'm not alone in thinking that Swift had made an excellent choice in going with reStructuredText for doc comments. I know Markdown is more ubiquitous, but it's also somewhat ill-defined and isn't particularly well-suited to long-form text. The use of reStructuredText promised to have a much more standardized way of writing documentation that could be very expressive and support extensions in a well-defined way (e.g. so documentation tools could define extensions you could use in your code).The only real concrete benefit to using Markdown is unifying it with Playground rich comments, but it seems to me that Playground rich comments should have just been using reStructuredText to begin with (or perhaps could have had a toggle in the document inspector for comment style, if there's a real need to support Markdown here, although I don't know what that need would be).
4
0
1.6k
Jun ’15
Drawing a single character with Core Text
I'm trying to rebuild a method to draw a single character as an image for an applicaiton icon. This previously worked with UIGraphics calls, but because of image orientation issues and the nil ContextRef warnings, I want to use a cleaner solution. I found this code to draw the text image online (credit raywenderlich.com):CGContextRef context = UIGraphicsGetCurrentContext(); CGMutablePathRef path = CGPathCreateMutable(); //1 CGPathAddRect(path, NULL, self.bounds ); NSAttributedString* attString = [[NSAttributedString alloc]initWithString:@A]; //2 CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attString); //3 CTFrameRef frame = CTFramesetterCreateFrame(framesetter, CFRangeMake(0, [attString length]), path, NULL); CTFrameDraw(frame, context); //4 CFRelease(frame); //5 CFRelease(path); CFRelease(framesetter);I've dynamically determined what I thought was a centered CGRect that will fit in my bounds. However, the text shows up VERY small at the top left corne
3
0
1.9k
Jun ’15
Reply to can't download
Same issue. I agreed to the new agreements and paid the $99 since I presume my last years account expired. Says order was processed and will be electronically delivered but haven't recieved any emails other than the order email. That was two hours ago and still doesn't show that Im an active developer when I try to download iOS or OS X. Not sure I need to keep waiting or if maybe my order got stuck in limbo during the initial launch of the new program? My card was charged.And if I try to re-enroll again, after entering in my info it says, We are unable to process your request. An unknown error occurred.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Split View
Split View will only work on an iPad Air 2, check out this table (scroll down a little): https://developer.apple.com/library/prerelease/ios/documentation/WindowsViews/Conceptual/AdoptingMultitaskingOniPad/index.html#//apple_ref/doc/uid/TP40015145-CH3-DontLinkElementID_2Are you using an Air 2?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Xcode 6.3.2 recalled? Unavailable for download.
The new developer site does not have Xcode 6.3.2 for download. It only has 6.3.1.https://developer.apple.com/xcode/downloads/Yes, I am logged in to Member Center. Yes, I accepted new agreement. I have seen cases before where I could not download proper versions without logging in.I can see 6.4 beta 3. I can see and download 7 beta.But the only released version available is 6.3.1 (6D1002) from April 21 2015.I have Version 6.3.2 (6D2105).What is going on? Was 6.3.2 recalled or something? Should I move off of it immediately?
5
0
723
Jun ’15
Invalid Bundle Identifier Format
I'm getting this email below everytime I try to upload my Mac app. Version 1.0 for this happ but I've submitted hundreds of updates/apps before with no issue. My CFBundleIdentifier = com.nuclearnova.mac.birdiegolf , any ideas ass to what could be wrong? I feel like I'm missing something silly here as this is so simple, but I waited a day and looked at it again and still can't figure it out. Also, this happens both before and after the WWDC system upgrades todayDear developer,We have discovered one or more issues with your recent delivery for Birdie Golf. To process your delivery, the following issues must be corrected:Invalid Bundle Identifier Format - The bundle identifier, as specified via the key CFBundleIdentifier in the bundle's Info.plist file, must consist only of characters that are uppercase or lowercase Roman letters (A-Z, a-z), the digits 0 through 9, dot (.), or hyphen (-). For more information about bundle identifiers, the CFBundleIdentifier key, and the Info.plist file, see the Mac Developer Lib
6
0
4.8k
Jun ’15
I want to put bordercolor with uiview by swift.
Hi there.I want to put bordercolor with uiview by swift,but i can't do it on iOS7.----------------------------self.layer.borderColor = UIColor.blackColor().CGColorself.layer.borderWidth = 1.0---------------------------This code can be used on iOS8,but it can't be used on iOS7.In iOS7,i imported 'quartzcore' in my code,i couldn't do it.what should i do?Thank you.
Topic: UI Frameworks SubTopic: UIKit Tags:
6
0
4.4k
Jun ’15
linker command failed with exit code 1 (use -v to see invocation)
Ld /Users/nathan/Library/Developer/Xcode/DerivedData/ExampleApp-adsgjtlrzvwdjxbdymykwbukmfch/Build/Products/Debug-iphonesimulator/ExampleApp.app/ExampleApp normal i386 cd /Users/nathan/Desktop/Xcode App/ExampleApp1/ExampleApp export IPHONEOS_DEPLOYMENT_TARGET=9.0 export PATH=/Volumes/Xcode/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Volumes/Xcode/Xcode-beta.app/Contents/Developer/usr/bin:/Volumes/Xcode/Xcode-beta.app/Contents/Developer/usr/bin:/usr/bin:/bin:/usr/sbin:/sbin /Volumes/Xcode/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin/clang -arch i386 -isysroot /Volumes/Xcode/Xcode-beta.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk -L/Users/nathan/Library/Developer/Xcode/DerivedData/ExampleApp-adsgjtlrzvwdjxbdymykwbukmfch/Build/Products/Debug-iphonesimulator -F/Users/nathan/Library/Developer/Xcode/DerivedData/ExampleApp-adsgjtlrzvwdjxbdymykwbukmfch/Build/Products/Debug-iphonesimulator -f
14
0
16k
Jun ’15
WWDC Platforms State of the Union Notes
ADC account will now cover Mac, iOS and watchOSOne ADC membership covers all - $99/yeariOS 9 will take up 1.3 GBs of space. OS updates will automatically download overnight.iOS app-slicing - Developer submits an app to the App Store, App Store will deliver to the device only the component parts of the app that the device can use. Don't have the fast CPU on the device? App Store will leave out the fast-CPU dependent parts of the app.iOS passcode are now going from four digits by default to six.System Integrity ProtectionProtects system filesNo installing in system locationsProtects system processesFor developers, streamlined developer workflow to accommodate System Integrity Protection.Utility available in the Recovery partition to disable System Integrity Protection.IPv6:Use the standard networking frameworksAvoid IPv4-specific APIsAvoid hard-coding addresses in appsImproved right-to-left language support, important for languages like Arabic or Hebrew.Improved link support in iOS 9. Click on a link w
8
0
5.8k
Jun ’15