markdown 一步一步地在Xcode中创建一个好的项目环境

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 一步一步地在Xcode中创建一个好的项目环境相关的知识,希望对你有一定的参考价值。

# Creating a Good Project Environment

When creating a new project, you shall:

1. Install SwiftLint into the project: https://github.com/realm/SwiftLint
2. Add Shell script for your TODOs and FIXMEs comments generate Warnings: https://crunchybagel.com/xcode-todo-warnings-swift/


## Adding TODOs and FIXMEs warnings

To do so, do the following:

1. Select your app target in the project overview.
2. Click on the Build Phases tab.
3. Click on + in the top-left to add a new phase.
4. Select New Run Script Phase.

In the allocated space for the script, enter the following:

```
TAGS="TODO:|FIXME:"
echo "searching ${SRCROOT} for ${TAGS}"
find "${SRCROOT}" \( -name "*.swift" \) -print0 \
    | xargs -0 egrep --with-filename --line-number --only-matching "($TAGS).*\$" \
    | perl -p -e "s/($TAGS)/ warning: \$1/"
```

以上是关于markdown 一步一步地在Xcode中创建一个好的项目环境的主要内容,如果未能解决你的问题,请参考以下文章

一步一步地配置Spring

从 React Native init 一步一步地 React Native Web

一步一步地从 shell 执行一个 python 包,例如调试模式[重复]

在 xcode8 中创建 NSManagedObject 类?

一步一步地深入浅出地实现状态机框架

一步一步地深入浅出地实现状态机框架