在编写 iOS 应用程序时评论标准?

发布于 2024-12-14 19:19:24 字数 369 浏览 3 评论 0原文

程序员们大家好,我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

温折酒 2024-12-21 19:19:24

我通常使用 #pragma 来分隔实现,例如:

#pragma mark UITableViewDelegate Methods

#pragma mark Custom functionality Methods

这样我可以查看下拉菜单并直接转到我想要的位置。

I usually use #pragma to separate implementations, like:

#pragma mark UITableViewDelegate Methods

#pragma mark Custom functionality Methods

So i can look at the drop down menu and go directly to where i want.

过度放纵 2024-12-21 19:19:24

我还使用

 #pragma mark - UISomeDelegate

 #pragma mark -

XCode 在导航栏中用一行分隔方法列表:

Line above UISomeDelegate

I also use

 #pragma mark - UISomeDelegate

or

 #pragma mark -

XCode separates methods list with a line in navigation bar:

Line above UISomeDelegate

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文