2

我在 Storyboardidentifier中为每个约束设置:

在此处输入图像描述

现在我得到错误unsatisfiable constraints。我尝试通过打印约束的指针来调试它:

po 0x17db78d0

现在为了调查它是什么约束,我想打印它identifier就像:

po 0x17db78d0.identifer.

...但它不工作。我收到一个错误:

错误:十六进制浮点常量需要一个指数

error: 1 解析表达式错误

因此,如何打印特定的标识符NSLayoutConstraint

4

1 回答 1

2

po ((NSLayoutConstraint *)0x17db78d0).identifier

于 2015-08-05T12:32:36.920 回答