Skip to content

Latest commit

 

History

History
31 lines (28 loc) · 1.19 KB

File metadata and controls

31 lines (28 loc) · 1.19 KB

Xcode File Header Templates

Plist Path

Project shared data: <ProjectName>.xcodeproj/xcshareddata/IDETemplateMacros.plist

Workspace shared data: <WorkspaceName>.xcworkspace/xcshareddata/IDETemplateMacros.plist

Template 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>FILEHEADER</key>
    <string> /////////////////////////////////////////////////////////////////////////////////////////////////
// ___ORGANIZATIONNAME___ copyright header start
// /////////////////////////////////////////////////////////////////////////////////////////////////
//
// PROPRIETARY / CONFIDENTIAL.
// Use of this product is subject to license terms.
// Copyright (c) ___YEAR___ ___ORGANIZATIONNAME___ Inc.
// All rights reserved.
//
// /////////////////////////////////////////////////////////////////////////////////////////////////
// ___ORGANIZATIONNAME___ copyright header stop
// /////////////////////////////////////////////////////////////////////////////////////////////////</string>
    <key>ORGANIZATIONNAME</key>
    <string>COMPANYNAME</string>
</dict>
</plist>