project settings - Can I set custom developer's name for creating files in Xcode? -


when xcode creates new textual file, contains such header:

// //  appdelegate.swift //  application name // //  created developer name on 25.07.17. //  copyright © 2017 company. rights reserved. // 

application name , company values gives project when developer's name macos account

can set custom developer's name project in xcode directly, without changing or setting os account?

it needed example when 1 mac uses work , home projects. want set real name work projects , pen name home.

thanks mark's comment found answer

for set custom project developer's name info.plist file must edited

just add row copyright (human-readable) (source code key nshumanreadablecopyright) , enter needed name:

enter image description here

or directly in source code:

<?xml version="1.0" encoding="utf-8"?> <!doctype plist public "-//apple//dtd plist 1.0//en" "http://www.apple.com/dtds/propertylist-1.0.dtd"> <plist version="1.0"> <dict>     <key>nshumanreadablecopyright</key> <!-- developer name key -->     <string>developer name</string> <!-- developer name value --> <!-- ... , further ... --> 

Comments

Popular posts from this blog

node.js - Node js - Trying to send POST request, but it is not loading javascript content -

javascript - Replicate keyboard event with html button -

javascript - Web audio api 5.1 surround example not working in firefox -