什么相当于swift中的“#pragma mark - ”? [重复]

时间:2022-07-27 13:48:16

This question already has an answer here:

这个问题在这里已有答案:

I want to organize my code by sections. usually I used #pragma mark - Section Name but when I try to do so in a .swift file it doesn't work.

我想按部分组织我的代码。通常我使用#pragma mark - Section Name但是当我尝试在.swift文件中这样做时它不起作用。

So my question is if I can somehow enable it and if not what is the way to organize my code in sections in a .swift file?

所以我的问题是,如果我可以以某种方式启用它,如果不是在.swift文件中的部分组织我的代码的方式是什么?

1 个解决方案

#1


36  

Use something like that:

使用类似的东西:

// MARK: - UITableViewDataSource

Or use extensions: I love the way how UITableViewDataSource delegate is implemented in this answer

或者使用扩展:我喜欢在这个答案中实现UITableViewDataSource委托的方式

#1


36  

Use something like that:

使用类似的东西:

// MARK: - UITableViewDataSource

Or use extensions: I love the way how UITableViewDataSource delegate is implemented in this answer

或者使用扩展:我喜欢在这个答案中实现UITableViewDataSource委托的方式