Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,672 results found

Post

Replies

Boosts

Views

Activity

Download Issues
Has anyone else had an issue downloading? My download was interrupted by a restart while I was away from my desk, when I returned, there was an OSX icon in my app list and it's desciption was Paused however there was no way to resume it. I tried to remove and reinstall the app but now when I click the Install link on the Download page in the developer Centre, the Appstore won't allow it to redownload saying the Download Code has already been redeemed.There doesn't seem to be a way to get another download code nor a way to resume a paused download, does anyone have any other suggestions?
2
0
400
Jun ’15
Duplicate iCloud Accounts
Just wanted to share that upgradeing from Yosemite, my MBP 13 Retina ended up with 2 iCloud accounts and it was creating a bunch of errors. The fix? Deleted and logged out of both accounts, rebooted and signed into iCloud from the iCloud System Pref.
0
0
158
Jun ’15
Compiler crash
Has anyone else seen anything like this?Assertion failed: (D->getSourceRange().isValid()), function buildDeclarationRefinementContext, file /Library/Caches/com.apple.xbs/Sources/swiftlang/swiftlang-700.0.38.1/src/swift/lib/Sema/TypeChecker.cpp, line 946. 0 swift 0x0000000109a08e0b llvm::sys::PrintStackTrace(__sFILE*) + 43 1 swift 0x0000000109a0954b SignalHandler(int) + 379 2 libsystem_platform.dylib 0x00007fff8b16cf1a _sigtramp + 26 3 libsystem_platform.dylib 000000000000000000 _sigtramp + 1961439488 4 libsystem_c.dylib 0x00007fff96a5bb53 abort + 129 5 libsystem_c.dylib 0x00007fff96a23c39 basename + 0 6 swift 0x000000010806de92 (anonymous namespace)::TypeRefinementContextBuilder::walkToDeclPre(swift::Decl*) + 1058 7 swift 0x000000010813cf5d (anonymous namespace)::Traversal::doIt(swift::Decl*) + 157 8 swift 0x0000000108141244 (anonymous namespace)::Traversal::visitNominalTypeDecl(swift::NominalTypeDecl*) + 164 9 swift 0x000000010813cfb2 (anonymous namespace)::Traversal::doIt(swift::Decl*) + 242 10
8
0
1.4k
Jun ’15
Reply to Xcode 7.0 Beta Throwing Heaps of Errors, update OS X?
The first step is probably to go to the Product menu in your project in Xcode and hold down the option key and choose Clean Build Folder..., to make sure there isn't any previously compiled code causing problems because of incompatibility.I don't think upgrading OS X to the El Capitan would improve anything for you, since a lot of us are just running Xcode 7 beta on Yosemite.If you haven't already backed up your project, you might want to do that before updating the code further, just in case you end up deciding to go back and wait.Assuming there isn't isn't anything really weird going on with your project, you would just need to work your way through it fixing the errors and warnings generated by the compiler. There can be a lot of new errors and warnings because of the changes between Swift 1.2 and 2 and the updates to Cocoa, but most of the errors and warnings should be relatively trivial to fix (changing var to let, updating the old generic sort/map/filter/find functions to be c
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to Can I use Digital Crown for WKInterfaceSlider?
It should be possible indirectly.Use an InterfacePicker and add a dummy array to it with the same number of steps as the Slider, but don't show the picker in the interface (It's minimum dimensions seem to be 2x2, not sure if it's still accessible if it's Hidden, haven't tried) then in the Picker's @IBAction func pickerAction(value: Int) use that to update the value of the Slider to match.If you set the Picker's focus style to None and Indicator to Disabled then no-one needs to know it's there. In code setting picker.focusForCrownInput() will make it priority for input.The only issue I've seen with this, is if the Interface is longer than the screen the crown reverts to scrolling the page itself and not the picker. Oh and it's a bit slow to get the picker updates (on device, not simulator)
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to App Review Time
If you're distributing an enterprise app, then it doesn't have to go through review so your question doesn't apply. But if by enterprise you just mean some arbitrary measure of developer size, no - it's a level playing field. An individual writing code on his laptop on the beach goes into the same queue as a company with hundreds of developers. That may not be true for the very biggest household names... companies like Facebook with deep OS integration probably do get special treatment. But the number of such companies is probably in the single digits.And @rromanchuk - I believe you are wrong about app reviews doing nothing. iOS users are much more willing to spend money and install new apps. They have an intrinsic trust that apps won't contain malware / spyware or mess up other apps on their devices. That is entirely thanks to Apple's hard line approach to app reviews. Long term that generates MUCH more revenue for developers. That is my experience at least. Even though there are comparable numbers
Jun ’15
Reply to Abort trap: 6
Maybe the reason the compiler is crashing because your code is trying to override a stored property in obj-c with a computed property in Swift?I would recommend filing a bug with your example code above, since the compiler/sourcekit shouldn't be crashing like that, and should provide an error if there is a problem with the code.Is there a reason why you can't leave out the override of path: and just set it in init like you do with strokeColor?required init?(coder aDecoder: NSCoder) { super.init(coder: aDecoder) strokeColor = UIColor.blackColor().CGColor path = staffPath() } override init() { super.init() strokeColor = UIColor.blackColor().CGColor path = staffPath() }
Jun ’15