从书中学习iOS编程时,我注意到对于像- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath这样的长代码行,作者倾向于将其分成两行,并按冒号将这两行对齐。如何在Xcode4中实现呢?

- (UITableViewCell *)tableView:(UITableView *)tableView
         cellForRowAtIndexPath:(NSIndexPath *)indexPath

最佳答案

您要做的就是在两个部分之间按Enter键。 Xcode会自动为您执行此操作(假设您正在编辑Objective-C文件)。

关于objective-c - 冒号:在代码中垂直对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7688236/

10-13 06:35