更改Xcode的缺省公司名

    更改前:

  1. //  testAppDelegate.m    
  2. //  test    
  3. //    
  4. //  Created by gaohf on 11-5-24.    
  5. //  Copyright 2011 __MyCompanyName__. All rights reserved.  

 在终端中执行以下命令:

defaults write com.apple.Xcode PBXCustomTemplateMacroDefinitions '{"ORGANIZATIONNAME" = "COMPANY";}'   

         

 更改后:

  1. //    
  2. //  testAppDelegate.m    
  3. //  test    
  4. //    
  5. //  Created by gaohf on 11-5-24.    
  6. //  Copyright 2011 COMPANY. All rights reserved.    
  7. //    
原文地址:https://www.cnblogs.com/SensenCoder/p/4994281.html