Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What is PBItemCollectionServicer?

I searched SO ,find nothing about PBItemCollectionServicer.

My question become form my app crash(because of memory rise violently), then print:

PBItemCollectionServicer connection disconnected.

The screen shot:

enter image description here

I have no idea about the PBItemCollectionServicer, whats mean of that?
and how does it work?
why it print here? Is it relate to my app crash?


Edit -1

As Nir's comment, he suspect if I use the under link framework.

https://github.com/JaviSoto/iOS10-Runtime-Headers/tree/master/PrivateFrameworks/Pasteboard.framework

No , I didn't, I searched my project with no result:

enter image description here

like image 739
aircraft Avatar asked Jan 06 '17 10:01

aircraft


2 Answers

Well, I guess those annoying PBItemCollectionServicer logs appear seconds after you copied (Command+ C) something into your iOS devices or iOS simulator which is running apps via Xcode.

The "universal clipboard" service (seems to) collects strings or images to share between your own iCloud devices (Mac, iOS devices ...)

It works in Sierra & iOS 10 environment Check this article

This log happens only when under simulator/iOS device while running on Xcode, I think.

I don't know why Xcode team let this somewhat should-be-hidden log displayed... for developers? But couldn't find any documentation... blah blah

like image 95
Kahng Avatar answered Nov 04 '22 06:11

Kahng


"PBItemCollectionServicer connection disconnected." also logs when using iOS 11 table view drag-and-drop and completing a drop. It's benign there, from all I've observed.

like image 9
JKaz Avatar answered Nov 04 '22 04:11

JKaz