Prior to the update to watchOS 2, battery use was very consistent at about 4% an hour during the day. Put watch on at say 6AM and by 11 PM battery would be down to something close to 30%. That was with OS 1.01.Since the upgrade to watchOS2, battery use has been running about 10% an hour, roughly double or so the rate. Put watch on at 6AM and now at 2:30 PM its down to 16%.Anyone else seeing this level of change?
Search results for
DTiPhoneSimulatorErrorDomain Code 2
158,615 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
Yeah i am having the same problem.I can sign in alright on my iOS devices, but my Mac can't sign into icloud.I have experience the following instances:1) Installed 10.11 onto a machine, which didn't use my icloud account - I can't sign in (Don't have a screenshot for that)2) Upgraded a machine that was using my icloud as my account and it seems to have signed in, but then whenever I need use an app relying on it I get the following message. (Screenshot 1)and when I want to see my icloud account details I see this:Hope this gets fixed soon.(This post has images, but they do not always seem to load, I will check again in a little while)(May have to use my TM backup for the time being)**EDIT**Just in case someone does not know what I am talking about, here is a link to the images.For some reason, this forum, does not show them in the final version, but it does when I edit the post.http://imgur.com/a/einpu
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Expanded DEP now available in 26 countriesFour-hour turnaround for replacement devicesNew features of DEPEnrollment optimization - Keeps the device in Setup Assistant until MDM enrollment completes.DEP will send a DeviceConfigured command to the device, to let it know it can now exit Setup AssistantAvailable for 10.11 / iOS 9Account creation:Prevent user account creationSet passcode policyCreate standard user accountSetup Assistant will also create admin account in the background.- optionally hiddenStandard user is created by Setup Assistant, (possibly hidden) admin user is available for remote administration.Additional panes can be removed from Setup AssistantTouch IDApple PayZoomAndroid Migration <- new option to removeMDMServiceConfigEquivalent to Storebag from iTunes StoreInforms tools what info they can obtain from your serverThree different ways of purchasing appsApp StoreVPP Redemption CodesVPP Managed DistributionVPP expanded to 26 countries (matches DEP)Multinational app assignmentPurchase app in
That appears to have done it. You can sign out of the Mac App Store with your personal ID and sign back in with your company ID, without having to do so system-wide.Don't worry about credit card, just paste your redemption code into the provided input field.
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Hello, With watchOS 2 and iOS 9 (betas 1) : My Watch is not able to receive any notification from any application. It's just ringing for phone and taping for Activity update. Do you have the same issue? I read in Twitter than some people are not concerned by this problem, they receive all the notifications of their iPhone. I hope we will find a solution to use a minimum our Watches in this first beta…
I also had battery drain, every 3 minutes one per cent. I re-installed ios 9 beta again and now iphone 6 & 6+ work again with no power loss at all. Re-installing on iPad Air 2 now. Will check it.(BTW, I had to re-install it 2 times on iphone 6 but it's woth it)
Topic:
App & System Services
SubTopic:
Core OS
Tags:
Will Swift 2 be keeping iOS7+, OS X 10.9+ compatibility as Swift 1 or dropping any of the older versions? I expect the former but didn't see it explicitly anywhere. Just to avoid surprises.I assume it is still iOS 8+ for including dynamic libraries/frameworks in release product.The above question is for actual release later in App Store not just development environment which as we know can be different (wider or narrower) than what is supported for release.Can someone from Swift team comment/confirm?
My sqlite code doesn't compile anymore in Swift 2. The problem lines are this:let SQLITE_STATIC = sqlite3_destructor_type(COpaquePointer(bitPattern: 0)) let SQLITE_TRANSIENT = sqlite3_destructor_type(COpaquePointer(bitPattern: -1))Command clicking to Swift's import of sqlite shows this:typealias sqlite3_destructor_type = (UnsafeMutablePointer<Void>) -> VoidComing from the following in sqlite3.h:typedef void (*sqlite3_destructor_type)(void*); #define SQLITE_STATIC ((sqlite3_destructor_type)0) #define SQLITE_TRANSIENT ((sqlite3_destructor_type)-1)Anyone know how to create those two constants in Swift 2.0? Even better if there's some way to import sqlite in Swift 2 without this bridging header stuff.Rob
I've been trying to build my code under 10.11 and Xcode7 and it's failing as it's unable to find the OpenSSL headers, it seems that these are no longer included. Am I going to have to bundle my own version of OpenSSL going forward?
So far, two of the apps that use Bluetooth are crashing whenever the apps try to connect to the devices. The first one is Kevo (it talks to the Qwikset Kevo lock to lock/unlock) and the second one is Mio Go (it talks to Mio's actitvity tracker Mio Fuse).
Can sombody tell me why the following code works? I know that it does. Specifically, look at the 'dict' variable. It is used in the fast itteration for loop. But wait, it's also used within the completionHandler block of code, but it doesn't have a __block specifier. Why does this work? __block NSMutableArray *dumArray = [NSMutableArray arrayWithCapacity:3]; for (NSDictionary *dict in self.stuffArray) { NSURL *url = [NSURL URLWithString:urlString]; NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:url]; request.timeoutInterval = kTimeoutInterval; [NSURLConnection sendAsynchronousRequest:request queue:[NSOperationQueue mainQueue] completionHandler:^(NSURLResponse *response, NSData *data, NSError *connectionError) { if (data.length > 0 && connectionError == nil) { NSDictionary *message = [NSJSONSerialization JSONObjectWithData:data options:0 error:NULL]; NSDictionary *daDict = [message objectForKey:@result]; NSString *theInfo = daDict objectForKey:@“stuff”]]; NSMuta
Hi guys How can I downgrade watchOS 2 to 1.0.1 please
There's exactly one thing you can do:1. Submit your application, and appeal the rejection if you're rejected for not having 64-bit code. It's anyone's guess whether your appeal will be successful, but that's really the only thing you can do.If the application submission process automatically rejects your app, then you're completely out of luck and you're just going to have to do whatever you have to do.
Topic:
App Store Distribution & Marketing
SubTopic:
App Review
Tags:
Hello,i tried to update my Apple Watch on Watch OS 2 Beta, but it crashes an now i cant Reset my Apple Watch. It only shows a red exclamation Mark.Anyone other got this Problem?Is there a way to get Help in the Apple Store?
Does anyone know if it is possible to have Swift 1.2 and Swift 2 source code in the same Xcode 7 project?