Search results for

apple pencil charging

143,573 results found

Post

Replies

Boosts

Views

Activity

Reply to Retrieve Apple Pencil Pro Orientation, Roll outside of HoverPose?
Hi and welcome to Developer Forums! PencilHoverPose is only available while an Apple Pencil is hovering in the area above the view’s bounds when the squeeze gesture or a double-tap gesture occurs. If Apple Pencil is farther than its maximum hover distance, its hover pose is no longer available. Check out our article on Apple Pencil and Scribble to learn more about the best practices of supporting Apple Pencil in your app.
Topic: App & System Services SubTopic: General Tags:
Jun ’24
Apple Pencil + Wifi + iPad Pro 11 inch
So I just downloaded the new update. For a week it was completely fine. I was working in procreate no problem, as I do freelance tattoo drawings. I didn't do anything to my ipad after the update like I did my phone so it looks the same way. I wish I didn't update. I'm 2 weeks behind on commission drawings because my wifi as well as my bluetooth keeps turning off or saying unavailable. Every time I think it's connect it craps out again. I have an appointment to go to apple in 2 more weeks. I've tried everything that's popped up lately with no success. My phone is fine with the update. My iPad is from 2019 iPad Pro with the second generation apple pencil. I've never had problems before. Someone please help me. I have deadlines and I can't get into the apple store for a couple weeks.
0
0
388
Oct ’20
How to detect whether Apple Pencil 2 is connected to an iPad Pro 3rd-gen
iPad Pro 3rd-gen and Apple Pencil2 is coming, I am going to prepare the update for my drawing app. But I am not going to buy the new devices, then the question is, how to modify the Apple Pencil detection code for the new device?Current code is as below,if ([central state] == CBManagerStatePoweredOn) { // Device information UUID NSArray* myArray = [NSArray arrayWithObject:[CBUUID UUIDWithString:@180A]]; NSArray* peripherals = [m_centralManager retrieveConnectedPeripheralsWithServices:myArray]; for (CBPeripheral* peripheral in peripherals) { if ([[peripheral name] containSubstring:@Apple Pencil]) { // The Apple pencil is connected self.stylusType = Stylus_ApplePencil; [self.delegate didConnectStylus:Stylus_ApplePencil]; } } }The uuid of Apple Pencil 1st-gen is 180A, what's is the new uuid and peripheral name then?
4
0
3.0k
Nov ’18
Reply to Apple Pencil Pairing Issues
Can't believe this is still an issue 6 whole years later in the year of our lord 2023, jfc get it together Apple. I have an iPad Pro that's several years old but still works well, though my original Apple Pencil died recently. My friend gave me a brand new one (still unopened in the packaging) that she bought about a year ago and never ended up using. I tried to connect it, but it won't charge or stay paired at all. Also tried the heat trick with a hair dryer multiple times, and it still isn't working. Going to try the genius bar at the store, but will be supremely annoyed if I have to replace a literally brand new pencil because Apple can't get their sh*t together.
Topic: App & System Services SubTopic: Core OS Tags:
Nov ’23
iOS 12.2 - Apple Pencil, Different Behavior in Safari?
Using an iPad Pro 10.5 (7,4) with 12.2 b1, Apple Pencil in Safari is behaving unexpectedly:Previously, tapping a link would register as a “click” and follow it. Starting with 12.2, tapping a link only selects it, and now you have to double-tap a link to follow it.Placing the cursor in this text box right now also requires a double-tap. Single taps are ignored.It’s only on web content. Other safari objects, controls, etc. (Tabs, keys, menus) are all normal.I‘ve searched through the documentation, the release notes, the interface guidelines, the forums and can’t find any mention of it. Is this expected, does anyone know? Is there something somewhere I’ve overlooked that I can set the behavior?Thanks everyone!
1
0
932
Jan ’19
Pencil no longer works and Notes crashes
IOS 10 Beta 4. rebooted, re-paired pencil. 53% charge in pencil. Pencil shows as paired, battery level is displayed in notification center, but the pencil does not work in apps (Notes, procreate, one note) and does not work to select items in any menu.Notes app now very slow and crashes after 1-2 minutes.Pencil and notes operated earlier today with IOS 10 Beta 3.
1
0
563
Aug ’16
Reply to How can I simulate apple pencil to develop some features for this stylus before its release?
Hey.....after going through the complete review of Apple Pencil from different links the only link i found very informative which has described each and every pionts very clearly and from that i came to know that one can easily use this pencil in developers environment.http://www.gizmobeat.info/apple-introduces-new-apple-pencil-for-technical-drawing
Topic: UI Frameworks SubTopic: UIKit Tags:
Nov ’15
Mobile Safari: possible to get 240Hz Apple Pencil input in Javascript?
Is it possible to get 240Hz Apple Pencil events in Javascript? I know that with UIKit you have to poke at coalesced events to get this sort of sampling frequency, but it appears that Safari (and Mobile Safari) do not support the new PointerEvents.getCoalescedEvents() API (https://developer.mozilla.org/en-US/docs/Web/API/PointerEvent/getCoalescedEvents). Anyone know of another way to get high-frequency 240Hz Apple Pencil events (e.g. as touchmove or pointermove events)?
2
0
1.4k
Sep ’21