Search results for

DTiPhoneSimulatorErrorDomain Code 2

158,487 results found

Post

Replies

Boosts

Views

Activity

Reply to Sync Core Data database
There is no direct CloudKit support in watchOS 2. You will need to copy the data you need via the WatchConnectivity framework or via a web service, using NSURLSession.I would urge you to only use a subset of what you need on Apple Watch. That's what we ended up doing in the WWDC app for Apple Watch.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Metal - Support for geometry and domain shaders?
So after looking through Metal's documentation and going through the headers, I'm noticing the omission of geometry and domain shader support. Technically, the basic idea behind these two could be done with a compute shader given the nature of Metal's pipeline, but proper support in MSL would be a nice convenience to have epsecially given there's largely already support for geometry and domain shaders in OpenGL 4.1.So I have to ask, is there something I missed? Can it be chalked up to 10.11 being in beta, therefore Metal for OS X being in beta as well and not feature complete as such? Or is Metal on OS X only there for additional API compatibility with iOS?
2
0
2.3k
Jun ’15
Application Transport Security ?
When I try to start an URL Request to my website from watchOS 2 the request fail and i get this message :Application Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.what can i do ? All i've found in the doc is :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.But nothing about the name of the key in Info.plist..
34
0
289k
Jun ’15
Restoring from backup not working
I installed 9.0 with no issues, when I went to go to restore form backup it showed the 2 backups I made, I tried both of them but they both said cannot restore form backup. I reinstaleld the firmware again and now my backups are not evene visible in my icloud account. Is anyone else having this issue?
7
0
964
Jun ’15
WKInterfaceController.openParentApplication is unavailable
I have an app that is currently available for the the Watch. In taking my first peek at iOS9, it only has 2 errors. One in the glanceController and the same in the interfaceController'openParentApplication(_:reply:)' is unavailableIt doesn't look like openParentApplication is even an option with the WKInterfaceController anymore.I know it's early in the process, but suggestions?
2
0
4.1k
Jun ’15
Reply to Redeem Code
Okay, so that honestly is weird.The only way I was able to get my code to redeem was my spam clicking the button once the code is entered. After a while it asked me to login. Did this about 4 times and then it finally redeemed it.My god, that was hard.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Arrays of tuples
In Swift 2, I created an array of tuples and try to append an item such as: var foo = [(Int, String)]() foo.append((400, Bad Request))I get an error:error: missing argument for parameter #2 in call foo.append((400, Bad Request))However, if I do: var foo = [(Int, String)]() let e = (400, Bad Request) foo.append(e)It compiles.This code worked with the previous version of XCode and Swift, and the release notes don't make any mention of changes to tuples.Is this a bug or am I doing something wrong?
4
0
5.3k
Jun ’15
Reply to 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
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
Reply to Multitasking How-To/Issues
Issues with split view:1) You can if you swipe it back to the right OR Pull down to select another app in it's palce2) Same as above3) Same thing I see4) Not seeing that one 5) I see the samePicture in Picture - I've only been able to get it to work with FaceTime (and it works pretty dang amazing) It even works if you are doing multi-task split screen apps. I had Safari, iMessage both running and Facetime PiP all at the same time. (Air 2 of course).I think YouTube, ESPN, etc all need to update the apps to take advantage of this feature. Watch ESPN just chrases on me.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to WKInterfaceController.openParentApplication is unavailable
Are you trying to target watchOS 2?If so, refer to the Apple Watch transition guide herehttps://developer.apple.com/library/prerelease/watchos/documentation/General/Conceptual/AppleWatch2TransitionGuide/UpdatetheAppCode.html#//apple_ref/doc/uid/TP40015234-CH6-SW1I havent had the time to try it myself yet but if you havent read that documentation I advise you do that first.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
Reply to trying to link like apps
So you currently have 2 apps (one ipad and one iphone) and now hoave one universal app? Is that what your asking?If so, then no. One group of people will have to pay again to switch to the other app as they have two different ID's so they for all intents and purposes different apps. If both groups originally paid for the app you could do somethign creative with a bundle but there's no ideal solution to your problem.
Jun ’15
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