gpt4 book ai didi

ios - Xcode IME - 快速获取方法调用参数类型的快捷方式?

转载 作者:行者123 更新时间:2023-11-28 07:00:46 26 4
gpt4 key购买 nike

在 Xcode 中,我总是试图找出要传递的参数类型,例如:对于此代码中给出的“属性”:

NSLayoutConstraint(
item: someView,
attribute: .CenterY,
relatedBy: .Equal,
toItem: view,
attribute: .CenterY,
multiplier: 1,
constant: 0
)

当然是 NSLayoutAttribute.CenterY

有没有一种方法可以在不使用 NSLayoutConstraint 和读出 func init 调用?

最佳答案

当您输入 NSLayoutConstraint( 时,您会得到建议的自动完成:

enter image description here

然后点击回车后出现如下情况(可以清楚的看到所有的参数类型)

enter image description here

但是,如果您已经在某个地方完整地编写了 NSLayoutConstraint()(就像您的问题中那样),您所要做的就是单击 itemattribute 等,您将能够在 Quick Help Inspector 中看到函数定义(如果它被选中)

enter image description here

在那里你可以很容易地找出.CenterY的参数类类型。

如果这不是您需要的,能否请您更详细地解释您想要实现的目标?

关于ios - Xcode IME - 快速获取方法调用参数类型的快捷方式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32107425/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com