It will be more natural if the other side of pencil can be used as eraser instead of having to choose eraser from toolbar (even double click on pencil).
Search results for
apple pencil charging
143,573 results found
Selecting any option will automatically load the page
Post
Replies
Boosts
Views
Activity
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:
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.
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?
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:
Hi All,My pencil hasn't worked since installing beta 13.0 ... just wondering if I need to do something to turn it back on ... but I recall I never had to do anything when I first got the pencil with the released os other than put it in it's place ... it just paired up and worked immediately.I on an IPad Pro 12.9 3rd Gen.Thanks.
I‘m having issues connecting the pencil to the iPad on iOS 11 beta 1. It is trying to connect to bluetooth but keeps disconnecting.Does anyone else have this issue?
Seeing an issue with 15.5 beta 3, where the Apple Pencil disconnects from the iPad Pro 3rd gen when the iPad is also connected to the Magic Keyboard. Once I disconnect the keyboard the Apple Pencil works again. Anyone else seeing this?
Good Eveningi made payment in September fourth for apple developer program (99$) why my credit card charged for 99$ 2 times, in September fourth and September fifth, please help me, i am panicThank you
Hi, I just got an iPad Air 4 with the 2nd gen pencil and I’m facing the issue that MS Onenote does not recognise Apple Pencil in text mode. It recognises it only in drawing mode. Please let me know how this may be fixed. Thanks
Hi,Our customer reported that Apple charged less then tier 1 (0.39 usd instead of 0.99) and we got back 0 price for this transaction.However he got an invoice about the full price (0.99). Can You help for us, what happened in this case?Thanks,Imre
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!
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.
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:
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)?