objc[13262]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[13262]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
objc[13260]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[13260]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
objc[13261]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[13261]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
objc[13263]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called.
objc[13263]: +[__NSPlaceholderDate initialize] may have been in progress in another thread when fork() was called. We cannot safely call it or ignore it in the fork() child process. Crashing instead. Set a breakpoint on objc_initializeAfterForkError to debug.
临时解决方案在终端执行如下
export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES
永久解决方案
sudo echo "export OBJC_DISABLE_INITIALIZE_FORK_SAFETY=YES" >> ~/.bash_profile && source ~/.bash_profile