Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,679 results found

Post

Replies

Boosts

Views

Activity

Reply to bricked
Try a different USB port each time. And, you might try opening x code to see if the phone shows up in devices and restore it from there . Have you also tried holding the power and home button together for 5 seconds?
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
watchOS beta Installation
Before installing watchOS 2 beta on Apple Watch, please read the watchOS beta Software Installation Guide.Troubleshooting InstallationDevices updated to watchOS beta may not be restored to earlier versions of watchOS without assistance from Apple Support. If your device restarts into recovery or your device needs to be restored back to the current GM version of watchOS, visit Apple Support and follow these steps:Click Apple Watch.Click Send in for Service. Click Setup & Usage. Click Updating my Apple Watch OS. Click Talk to Apple Support Now. Your device must be sent in for service to be restored and will be erased and restored with the current GM version of watchOS. Once your device is received, it may take up to 3 business days to be serviced. The device you receive back will be the device you sent in. 
 Apple Authorized Service Providers and Apple retail stores are unable to perform this service. Countries in which this service is currently available are: Australia, Canada, France, Germany, It
0
0
2.3k
Jun ’15
Notes from Thursday Security Lab
System Integrity ProtectionQuestion:Will disabling SIP be available as a choices .XML at install time for the 10.11 OS? If not, what mechanism will be provided for automatic disabling of SIP for use with automated imaging processes for machines?Pain point: Not every environment will be able to access Internet Recovery. At the same time, straight cloning of existing disks is problematic.Answer:SIP is always off in the Recovery environment and the Installer environment. While booted from those environments, you will be able to make changes to a boot disk which is otherwise protected by SIP.SIP-protected files will still appear as restricted when listed with ls's -O, but they can be renamed, moved, deleted or changed.There will be a command line tool to disable SIP in the Recovery environment, separate from the current GUI tool. The GUI tool is in fact going to disappear in favor of the command line tool. This change will likely appear in Developer Beta 2 or Beta 3; check the release notes.Question:The
6
0
6.0k
Jun ’15
Reply to iOS 9 Beta battery life
Hey Andrea. Yes Its terrable on both my 6 plus and ipad air. I was hiking with my Dog for a couple miles and she went swimming and two hours later it was 60% left. I posted facebook videos and texed stuff too, but as with most Betas the first Beta is terrable for battery life. I cant revert back cause im using Watch 02 and I cant go back to 01 on the watch and BTW that battery life took a hit too.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to What platforms can we target with Swift 2.0?
That is a reasonable assumption but I would NOT make a decision now to use Swift 2 if supporting previous platforms is critical for your app until there is official confirmation of this and Xcode 7 gets all the SDKs and simulators.There was no official response to an earlier query on this. This should be easy enough for the team to confirm to make it easy and safe for developers to make their migration decisions but they have a habit (conscious or not) of making it unnecessarily difficult in the past. :-)Note that there was no obvious or language technical reason for dynamic libraries to not be supported in iOS 7, it was a deployment issue. So even if you get your Xcode 7 compiled app to run on previous versions in development environment, there is no guarantee you will be allowed to deploy it.I can think of several POTENTIAL reasons that previous iOS may not be supported.1. Lack of sufficient resources to test and certify Swift 2 runtime on previous versions to be confident of allowing it.2
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Can't debug on watchOS 2
When I try to build & run my app on my real devices, I can't select them under schemes. they show up below ineligible devices:My iPhoneName + (null) (paired device os version)So I looked in Organizer > Devices, and at Paired Watch Information it readsName <null>Model UnknownwatchOS (null) ((null))Identifier b42ebe... seems okayUrgh... tried to re-pair, didn't help. It just deleted all my apps and can't download them again (Insufficient storage, read that in other thread)
1
0
467
Jun ’15
App opens CoreData stores when launch via Xcode, but not when launched via Finder
We have an application that has been using CoreData stores since 2009, but is suddenly having some strange behavior when the application is launched via the Finder.The application has up to a couple hundred core data stores (sqlite with WAL) that are loaded into a single persistent store coordinator at launch. When the application is launch from within Xcode (using release or debug builds, with the debugger on or off), everything loads up fine---zero complaints. However, when the application is launch from the Finder, the first 'several' persistent stores are loaded fine, but then eventually they start failing to load. E.g.,Error Domain=NSCocoaErrorDomain Code=256 The file couldn’t be opened. UserInfo=0x618000278d80 {NSSQLiteErrorDomain=14, NSUnderlyingException=I/O error for database at /Users/path/SomeStore.sql. SQLite error code:14, 'unable to open database file'}What could possibly be going on here?It's worth noting that the application actually creates two separate persistent s
5
0
2.0k
Jun ’15
iOS beta 8.4 iPad can't backup to iTunes
Since installing iOS Beta 8.4 on my iPad Air 2 today I am unable to backup the iPad via iTunes (encrypted backup). It fails near the beginning every time with:iTunes cannot backup the iPad My iPad because there is not enough free space on this computer to save the backup.which is p[atently an incorrect error since (a) I backed up the iPad successfully immediately before I applied the 8.4 Beta and (b) I have over 280 GB of freee space available. I am still able to backup my iPhone which is on 8.3.Anyone else seen thsi issue?Chris
0
0
282
Jun ’15
App crashes when trying to perform custom segue
I'm relatively new to using Storyboards and very new to segue programming, and I'm encountering a problem with a custom segue that I'm trying to implement in my App; or more specifically, a problem when trying to use an unwind segue.I've created two custom segues which are extending UIStoryboardSegue, CurlSegue and CurlSegueUnwind. In my Storyboard I have two ViewControllers, each associated with a class that is extending UIViewController. I connected a Button in the first ViewController to the second ViewController using a Control+Drag, selecting custom and specifying the identifier of my segue (i.e. CurlSegue). This works fine and my custom segue performs as expected without incident, bringing up the second ViewController.To then get the reverse working -- following this documentation -- I added a method named prepareForUnwind to the first ViewController's associated class implementation with the signature below:- (IBAction)prepareForUnWind:(UIStoryboardSegue *)segueOn the second ViewContr
0
0
818
Jun ’15
Swift SpriteKit - View is equal to Nil
Hi,I have been working on a game of which uses swipe controls but ran into a 'fatal error' which caused my application to crash on launch. Thankfully I have found the solution to this problem however I am not quite sure how to fix it. Here is the problem. As you can see in the 'didMoveToView' function, I have tried to add a gesture recogniser to the view but the view is for some reason an optional. Because of this, I have to place either an ! or a ? after the view. This may not seem a problem but when the view is followed by an ! it crashes because it attempts to unwrap an optional (the 'view') which is equal to nil. And whenever I follow view with a ? it just completely ignores the 'addGestureRecognizer' line of code. If anybody knows how to fix this and give the view a value, please reply as it would be much appreciated.Thankyou,Richard Eaves
2
0
405
Jun ’15
Reply to Does Core Motion in watchOS 2 allow access to the gyroscope?
Can anyone confirm that they have actually tried the gyroscope API's in watchOS 2 SDK?Although there are no gyroscope access APIs in the new CMSensorRecorder, there are gyroscope access APIs for CMMotionManager in CoreMotion framework for watchOS 2 SDK.What this might mean is that the gyroscope data can only be available when your app is active (your app is visible), but is not available via historical data access (like accerlerometer is).Can someone maybe at the conference confirm this with an Apple engineer, or if you have tried it programatically and could not get to to work, update this post?Thanks.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15