Xcode初始化设置

 

 

#!/bin/bash

# this script can help to initialize xcode environment, including 
# set organization name, set author name.

ORGANIZATION_NAME="";
FULL_USERNAME="";

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME"="$ORGANIZATION_NAME";}'
defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"FULLUSERNAME"="$FULL_USERNAME";}'
 

 

 

 

你可能感兴趣的:(iOS)