在编写 iOS 应用程序时评论标准?
程序员们大家好,我有 Java 背景,但我刚刚开始学习 C++ 和 Objective C。当我在第三方 Objective C 代码中使用如此多不同的编码风格时,我感到很担心。但我有点陷入困境。
我的困境是在编写 iOS 代码时是否使用 #pragma 标签 应用?这被认为是一个好的做法吗?或者是 程序员自己选择拥有这些指令下拉链接?
您的专业知识和行业经验将会有所帮助,
谢谢
- 我在互联网上搜索的内容主要是建议#pragma 的作用。但我找不到太多关于这是否被认为是良好实践的信息。
G'Day Programmers, I am from Java background however I have just started learning C++ and Objective C. I was worried when I so lots of different coding style in third party Objective C code. But I am kind a stuck with a dilemma.
My dilemma is whether to use #pragma tags while coding iOS
application? Does it considered to be a good practise? Or it is
programmer's own choice to have those directive drop down links?
Your expertise and industry experience will be helpful,
Thanks
- Content I searched on internet were mostly suggesting what #pragma does. But I couldn't find much information regarding whether it is considered to be good practise or not.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我通常使用 #pragma 来分隔实现,例如:
这样我可以查看下拉菜单并直接转到我想要的位置。
I usually use #pragma to separate implementations, like:
So i can look at the drop down menu and go directly to where i want.
我还使用
或
XCode 在导航栏中用一行分隔方法列表:
I also use
or
XCode separates methods list with a line in navigation bar: