Search results for

apple pencil charging

144,207 results found

Post

Replies

Boosts

Views

Activity

Strava/BlueTooth issue?
9 beta 1 breaks Strava, Kinetic, Garmin Connect and Wahoo Fitness on iPhone 6+. Apps will launch but crash immediately. Appears to be Bluetooth-related e.g. Wahoo seems normal until you try to connect (via bluetooth) to a sensor, then immediate crash. Fact that four different apps, from four competing companies, are all broken suggests (to me, anyway) that the problem is on Apple's side -- they've changed something that, before, was commonly used and accepted.
1
0
176
Jun ’15
Inserting Unencrypted Token into DEP
Hello,I am currently working on a application, consuming the Apple MDM Api.In order to be able to use this API, I need to authorize using data from a decrypted server token (found in the corresponding server on https://deploy.apple.com).So far this is all good.Steps we managed to do so far:1. Create Public/Private key2. Added our server to https://deploy.apple.com in combination with our public key.3. Generated and downloaded the token that gets automatically generated.4. Decrypted that token using the private key (for the correct information in order to consume the API)Steps that need to be done:1. Install the Generated token on the Apple Server's DEP (Local Apple Server)The Problem:When we go to the Local Apple Server's DEP and try to enable the DEP, an already existing public key is already installed there.Since we used a different Public/Private key to generate the token, our Local Apple Server's DEP tells us that the Token is invalid.We are kind of stuck here.
4
0
998
Jun ’15
Reply to Subscript throws
First, as a side note, since the external parameter name of the first parameter in methods is implicitly omitted (_), and for subscripts this extends to all parameters, your example has an invalid redeclaration of the subscript (you are in effect only using different local parameter names, which will not make the subscripts unique).If you want a separate subscript with the external parameter name bar you would have to do something like this:struct Foo { subscript(foo: String) -> Void { print(foo: (foo)) } subscript(bar bar: String) -> Void { print(bar: (bar)) } } let f = Foo() f[Hello world 1] f[bar: Hello world 2]Second, as to your actual question: No, it seems like subscripts can't (currently) throw.Finally, I saw it mentioned on Erica Sadun's blog, that subscripts can't throw, and I could have provided the url, but for some unknown reason this forum software will make this post wait forever for moderation if I do, so I had to remove it (I've noticed that in other posts as well so you'll have to googl
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’15
How do I generate an RSA public key using a modulus and exponent in iOS? (Obj-C)
Hi guys,I need to generate an RSA public key from a modulus and exponent and I'm unable to find any resources where someone has done this successfully. I can't even find a way to do it in Apples documentation. I have heard using SecKeyRef and/or OpenSSL is the way to go but searches on both of those lead to nothing that has worked (and what I tried is far too extensive to list here). Is this something not possible in iOS? If anyone has any ideas how to accomplish this I would greatly appreciate hearing them. Thank you.
7
0
6.1k
Jun ’15
Reply to Can a Safari developer download iOS 9 beta?
Safari developers aren't Apple developers. You need to enroll to apple developer program and pay the quote.But, if you aren't an iOS developer, you should NOT install a beta version on a non-testing terminal.I've known all betas since iOS 4. I know what I'm talking about. Things like no battery (1-2 hours of battery life), no iTunes app, or Phone app not working, all these things can happen on a beta. And, also, is not a warning for a beta 1. For example, my problem with iTunes app happens with at least 3 beta versions, if I remember correctly, beta 4, 5 and 6 of the same iOS.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
CalDAV
I am using the 1st El Capitan Beta and having an issue with Calendar. I am able to create an account (on my client computer) for my CalDAV server (Apple Server) . However, I see none of the calendar entries that were created by others. I can create and delete an event and that shows up, but not the other entries (mainly created by 1 person).Anybody else having this issue? Am I doing something wrong or should I enter a bug report?Thanks!CodeWrangler
0
0
244
Jun ’15
watch os 2 file exchange
I'm trying to send a text data from watchOS 2 to iPhone but found out the hard way that I can no longer use openParentApplication on iOS9. So my next recommended option is to save text into a file and send it via shared groups, which from the watchOS 2 transitioning guide is no longer possible:You cannot rely on a shared group container to exchange files with your iOS app. Fetching files involves transferring them wirelessly to Apple Watch.WatchOS2 transition doc says there are mechanisms to do transfer of a file over network but no specifics or guidance.While Apple Watch provides mechanisms to facilitate those transfers, you must update your data-handling code to support those mechanisms.What are the mechanisms?I read through the WKInterfaceController doc and header file and didn't see an API to do network file transfer.
2
0
589
Jun ’15
Reply to App opens CoreData stores when launch via Xcode, but not when launched via Finder
This is actually ridiculously easy to reproduce using Apple's template code for CoreData, with only a few lines of modification. I posted sample code on GitHub. If you build an run it, it will create 1000 empty sql stores. It builds and runs fine from within Xcode. Now go 'Archive' the application, then run it. Now it'll fail to load. You'll see the errors pile up in the console.This is a bug, right? Anybody see a way around this (short of using one store)?
Jun ’15
Publishing an app with MFi approval
I am trying to publish an app on the app store but was rejected due to MFi program. Apple states nothing further. I have been approved from the vendor. I have verified we are included in their MFi program with the vendor and supplied required forms. Can anyone advise on what is required more specifically or where I can provide further proof of MFi approval if app is rejected for this reason? Thanks!
4
0
5.3k
Jun ’15