Objective-C Tidy

后端 未结 8 2062
無奈伤痛
無奈伤痛 2020-12-08 08:17

I have a somewhat messily-formatted Objective-C code base. Is there a way to have Xcode reformat an entire project to conform to a coding standard (i.e., properly indent, sp

8条回答
  •  旧巷少年郎
    2020-12-08 09:04

    According to this blog post, bcpp works with Objective-C.

    In addition, the tool indent might help you. It's aimed at plain C but has a gazillion options that could help. I don't know if it comes by default on OS X though.

    NAME
           indent - changes the appearance of a C program by inserting or deleting
           whitespace.
    
    SYNOPSIS
           indent [options] [input-files]
    
           indent [options] [single-input-file] [-o output-file]
    
           indent --version
    
    DESCRIPTION
           This man page is generated from the file indent.texinfo.  This is  Ediâ
           tion  of "The indent Manual", for Indent Version , last updated .
    
           The  indent  program  can  be used to make code easier to read.  It can
           also convert from one style of writing C to another.
    
           indent understands a substantial amount about the syntax of C,  but  it
           also attempts to cope with incomplete and misformed syntax.
    

提交回复
热议问题