Xcode 中的代码完成
当您在 Xcode 中键入对象的名称并按转义键激活代码完成时,是否有任何方法可以仅查看该对象的直接方法。
目前我可以看到数百种不同的方法。为什么会有这些方法?它们不能都属于父对象(在本例中为 NSObject)吗?
为什么我可以看到对象的属性显示为方法?我不会对属性的 get 或 set 方法感到惊讶(令人困惑的是它们无处可见),但为什么对象本身的属性显示为方法?
When you type the name of an object in Xcode and press escape to activate code completion, is there any way to only view the direct methods of that object.
At the moment I can see hundreds of different methods. Why are those methods even there? They can't all belong to the parent object (NSObject in this case)?
And why can I see properties of the object appearing as methods? I wouldn't be surprised to the property's get or set methods (confusingly they are nowhere to be seen) but why does the property of the object itself appear as a method?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用“命令+”。实现该对象的直接方法。
use "command + ." to achieve the direct methods of that object.