Search results for

“apple pencil charging”

149,648 results found

Post

Replies

Boosts

Views

Activity

Reply to Wacom Intuos 3 - not Working under Beta 2...?
The Wacom tablets are USB connected, and the Intuos line so old I'm sure it is USB 1 or 2. However the weird thing is (as BlueSpud points out) the tablet is registering OK in the USB system (you can see it in a System report) and seems to be aware of the pen stylus. On my system there is no tool / pointer drawn on screen, but OS X appears to be responding to 'edge' events (such as hot corners on desktop) via movements in stylus - but nothing at all with the Mouse.I guess this is probably a Wacom driver issue rather than OS X 10.11 - but very helpful to know that others are seeing it too.
Topic: App & System Services SubTopic: Core OS Tags:
Jun ’15
How to integrate Pencil into my application? I have encountered a problem.
我是个新手。我是UIKit的新手。我真的不知道该怎么办。我的问题是,我希望用铅笔绘制的图纸在PencilCreate中显示,但我不知道如何控制它们的交付。我需要单击HB才能跳转到铅笔视图界面。然后,铅笔视图界面中绘制的内容可以显示在PencilCreate的.border中。 导入SwiftUI 导入 PencilKit struct GrPencil:查看{ var body:一些视图{ 导航堆栈{ 画布视图() } } } struct CanvasView:UIViewRepresentable { @State var canvasView:PKCanvasView = PKCanvasView() @State var toolPicker = PKToolPicker() func makeUIView(上下文:上下文)-> PKCanvasView { canvasView.drawingPolicy = .anyInput canvasView.becomeFirstResponder() toolPicker.setVisible(true,forFirstResponder:canvasView) toolPicker.addObserver(canvasView) 返回canvasView } func updateUIView(_ uiView: PKCanvasView, context: Context) { } } #预览 { GrPencil() } 导入SwiftUI 导入 PencilKit struct PencilCreate:查看{ @State var drawing = PKDrawing() var body:一些视图{ VStack { VStack { 图像(uiImage:drawing.image(来自:drawing.bounds,比例:1)) .resizable() .框架(宽度:200,高度:120) .border(颜色.黑色) 按钮{ }标签:{ 文本(“HB”) } } } } } #预览 { PencilCreate() }
Topic: UI Frameworks SubTopic: SwiftUI
0
0
410
Jul ’24
Reply to Apple Pencil Pairing Issues
Same exact thing for me. My wife bought this pencil brand new with her ipad. Used it MAYBE 6 or 7 times initially, and set it aside. She couldn't find it for a year. It somehow found itself in an old purse under the bed. So this went unused for a year. Same thing happens to me.....connects, then disconnects, states 3% life. Plug it in to charger, charge it, plug it in to ipad, and it again states 3%, connects, disconnects. Does the same thing wit her newer ipad, and my 2016 ipad pro. I took it to the retailer that we bought it from, and I was 14 days beyond the 1-year mark. Really disappointing to spend $99 on an ipencil that doesn't work after a year. By the way, this was the third one we have paid for. I had 2 for my ipad. I left one on an airplane, and bought a replacement, which I used religiously, daily for 2 years, until my dog chewed it up. This one, (my wife's), used only a few times, and then after a year, it doesn't work????? VERY DISAPPOINTED IN APPLE
Topic: App & System Services SubTopic: Core OS Tags:
Jul ’20
Charge user for not using app?
Is it possible to charge the user a one dollar fee for every 24 hours not using the app? It seems like this would be very valuable, most people who download exercise apps do not continue to use them on a daily basis and this system would inspire them to be consistent.
2
0
559
Apr ’17
HealthKit backgroundDelivery is only triggering in the background while charging
HealthKit background delivery only triggers when charging. I have set step monitoring to hourly frequency. Despite step changes, callbacks fail to arrive after 3-4 hours on battery, but trigger immediately upon connecting power. Observed for 2 days: background updates are only received when charging. The device is not in Low Power Mode, and Background App Refresh is enabled for the app in Settings.
4
0
405
Jan ’26
Reply to Apple Pencil and iOS 11 issues
Yes, I cannot pair my Pencil with ios11 (release version, not beta).
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’17
Watch S4 watchOS5.1 not charging
Hi,I have the problem that my watch starts charging only after unplugging and plugging again the charger several times. Keeps happening in latest 5.1 beta2
Replies
0
Boosts
0
Views
581
Activity
Oct ’18
Reply to Ipad not turning on; stuck in charging symbol during ios 11 update
Same here with iPad Air 1. The iPad didn't charge when I connect it to the wall adapter (original Apple adapter and cable). But I found out that the iPad starts charging when I connect it to my MacBook. Maybe this could help you.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’17
Reply to Apple Pencil pressure values erratic
I'm still looking for an answer to this, if anyone has worked much with the Pencil...
Replies
Boosts
Views
Activity
Oct ’17
Reply to iOS 14 Beta Battery drain on iPhone 6s
Battery drain is very much one the iphone x . One day i had to charge three times. I hope apple resolves this problem asap. On nine hours usage i had charged three time.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’20
Reply to Wacom Intuos 3 - not Working under Beta 2...?
The Wacom tablets are USB connected, and the Intuos line so old I'm sure it is USB 1 or 2. However the weird thing is (as BlueSpud points out) the tablet is registering OK in the USB system (you can see it in a System report) and seems to be aware of the pen stylus. On my system there is no tool / pointer drawn on screen, but OS X appears to be responding to 'edge' events (such as hot corners on desktop) via movements in stylus - but nothing at all with the Mouse.I guess this is probably a Wacom driver issue rather than OS X 10.11 - but very helpful to know that others are seeing it too.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
How to integrate Pencil into my application? I have encountered a problem.
我是个新手。我是UIKit的新手。我真的不知道该怎么办。我的问题是,我希望用铅笔绘制的图纸在PencilCreate中显示,但我不知道如何控制它们的交付。我需要单击HB才能跳转到铅笔视图界面。然后,铅笔视图界面中绘制的内容可以显示在PencilCreate的.border中。 导入SwiftUI 导入 PencilKit struct GrPencil:查看{ var body:一些视图{ 导航堆栈{ 画布视图() } } } struct CanvasView:UIViewRepresentable { @State var canvasView:PKCanvasView = PKCanvasView() @State var toolPicker = PKToolPicker() func makeUIView(上下文:上下文)-> PKCanvasView { canvasView.drawingPolicy = .anyInput canvasView.becomeFirstResponder() toolPicker.setVisible(true,forFirstResponder:canvasView) toolPicker.addObserver(canvasView) 返回canvasView } func updateUIView(_ uiView: PKCanvasView, context: Context) { } } #预览 { GrPencil() } 导入SwiftUI 导入 PencilKit struct PencilCreate:查看{ @State var drawing = PKDrawing() var body:一些视图{ VStack { VStack { 图像(uiImage:drawing.image(来自:drawing.bounds,比例:1)) .resizable() .框架(宽度:200,高度:120) .border(颜色.黑色) 按钮{ }标签:{ 文本(“HB”) } } } } } #预览 { PencilCreate() }
Topic: UI Frameworks SubTopic: SwiftUI
Replies
0
Boosts
0
Views
410
Activity
Jul ’24
Reply to Are there any guidelines for the Apple Pencil yet?
Apple purchased fingerworks, which supported touch radius. Recenty, appled opend up some of the API with [touch majorRadius], with three levels. Am sure there are more levels, internally. As long as your hands/fingers are wider than the tip of the pencil. Should be ok. Maybe a problem for your dog to use it though - claws and all.
Replies
Boosts
Views
Activity
Sep ’15
Reply to M1 M2 webgl.ALIASED_POINT_SIZE_RANGE
simple test case https://codepen.io/mrmernan/pen/MWVvGmv
Topic: Graphics & Games SubTopic: Metal Tags:
Replies
Boosts
Views
Activity
Sep ’22
Reply to Apple Pencil Pairing Issues
Same exact thing for me. My wife bought this pencil brand new with her ipad. Used it MAYBE 6 or 7 times initially, and set it aside. She couldn't find it for a year. It somehow found itself in an old purse under the bed. So this went unused for a year. Same thing happens to me.....connects, then disconnects, states 3% life. Plug it in to charger, charge it, plug it in to ipad, and it again states 3%, connects, disconnects. Does the same thing wit her newer ipad, and my 2016 ipad pro. I took it to the retailer that we bought it from, and I was 14 days beyond the 1-year mark. Really disappointing to spend $99 on an ipencil that doesn't work after a year. By the way, this was the third one we have paid for. I had 2 for my ipad. I left one on an airplane, and bought a replacement, which I used religiously, daily for 2 years, until my dog chewed it up. This one, (my wife's), used only a few times, and then after a year, it doesn't work????? VERY DISAPPOINTED IN APPLE
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jul ’20
Charge user for not using app?
Is it possible to charge the user a one dollar fee for every 24 hours not using the app? It seems like this would be very valuable, most people who download exercise apps do not continue to use them on a daily basis and this system would inspire them to be consistent.
Replies
2
Boosts
0
Views
559
Activity
Apr ’17
UICollectionViewCell call charge function automaticly when Touch Down
There are several buttons in my cell, one of them will call charge function when touch up inside.But... I found that charge function is called when finger touch down inside this cell, eventhough I haven't click charge button.I can't find any document about charge function in UICollectionViewCell...
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
0
Boosts
0
Views
423
Activity
Apr ’17
HealthKit backgroundDelivery is only triggering in the background while charging
HealthKit background delivery only triggers when charging. I have set step monitoring to hourly frequency. Despite step changes, callbacks fail to arrive after 3-4 hours on battery, but trigger immediately upon connecting power. Observed for 2 days: background updates are only received when charging. The device is not in Low Power Mode, and Background App Refresh is enabled for the app in Settings.
Replies
4
Boosts
0
Views
405
Activity
Jan ’26
Reply to iOS 14 Significant Impact to battery life.
I'm having the same issue and now my Iphone won't even turn on. It won't charge. I'm taking it to Apple tomorrow but they mentioned a $100 charge. This is unacceptable. My phone was working perfectly fine before I updated it.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Sep ’20
Reply to Apple pencil don't work on iPad pro with iOS 9.2.1 beta 2
I just updated my iPad Pro late last week and pencil no longer connecting or registering as a discoverable device on iPad. Spoke with Apple Care and they are not sure of the exact problem, recommending to restore to earlier version of ios. Will be restoring in the AM. Hope that works.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jan ’16