在Xcode中,我总是想弄清楚要传递的参数类型,例如:对于此代码中给出的'attribute':
NSLayoutConstraint(
item: someView,
attribute: .CenterY,
relatedBy: .Equal,
toItem: view,
attribute: .CenterY,
multiplier: 1,
constant: 0
)
当然是NSLayoutAttribute.CenterY
有没有办法快速找出属性中.CenterY
的参数类类型而不使用NSLayoutConstraint
上的⌘按钮并读出func init调用?