Class Plbuildversion Is Implemented in Both/Applications

Class _PointQueue is implemented in both when I click on textfield... How can I resolve this issue?

Apple developer Quinn “The Eskimo!” @ Developer Technical Support @ Apple answered this question here:

This is not an error per se. Rather, it’s the Objective-C runtime telling you that:

  • Two frameworks within your process implement the same class (well, in this case classes, namely _PathPoint and _PointQueue).
  • The runtime will use one of them, choosing it in an unspecified way.

This can be bad but in this case it’s not. Both of the implementations are coming from the system (well, the simulated system) and thus you’d expect them to be in sync and thus it doesn’t matter which one the runtime uses.

So, in this specific case, these log messages are just log noise.

Class _PathPoint is implemented in both error when using Xcode

As stated here, this can be considered log noise.

This is not an error per se. Rather, it’s the Objective-C runtime telling you that:

Two frameworks within your process implement the same class (well, in this case classes, namely _PathPoint and _PointQueue).

The runtime will use one of them, choosing it in an unspecified way.
This can be bad but in this case it’s not.

Both of the implementations are coming from the system (well, the simulated system) and thus you’d expect them to be in sync and thus it doesn’t matter which one the runtime uses.
So, in this specific case, these log messages are just log noise.

I know it feels weird to have it all the time, but is safe to ignore it until apple update something in the playground and corrects the issue.



Related Topics



Leave a reply



Submit