3

I am trying to figure out how to reveal exactly which constraints are breaking in my code.
However, xcode 8 only returns <private>.

Any idea how to show these <private> objects?

Xcode 8 console

boraseoksoon
  • 2,164
  • 1
  • 20
  • 25
stone
  • 2,192
  • 16
  • 26
  • Well _that_ sounds like a bug! File file file. – matt Aug 17 '16 at 14:45
  • Definitely a bug. When you use beta software, you are doing free QA for the vendor in exchange for being on the bleeding edge :( – Code Different Aug 17 '16 at 15:06
  • I'm having this issue as well. – Chris Livdahl Aug 27 '16 at 19:22
  • There was a talk at a Swift London meeting on how to use the Xcode debugger effectively. I wish i watched it more thoroughly, now i can't find it. I am certain it may have had a few pointers on how we could set up xcode to get more detailed info in the debug console. Anyways if it is a bug hopefully we will get more information with this radar https://openradar.appspot.com/radar?id=5022031137472512 – stone Aug 27 '16 at 20:45
  • Found it. https://realm.io/news/swift-summit-carola-nitz-debugging/ – stone Aug 27 '16 at 20:46

1 Answers1

0

TLDR; The solution is to make sure you app has a signing identity/certificate. i.e a mac or ios development identity


Got an update from apple saying the issue was officially closed and was not a bug. Suggesting to use breakpoint debugging to fully understand these objects. However going through my app details I noticed for some reason when I updated xCode the signing identities were not transferred. I enter image description here

And now <private> shows exactly what <NSView> or other object I am dealing with

enter image description here

Mr Lister
  • 45,515
  • 15
  • 108
  • 150
stone
  • 2,192
  • 16
  • 26