Xcode项目模板的特殊帮助,它没有在文件内容中进行替换

时间:2008-10-06 21:59:00

标签: cocoa xcode macos

我们正在尝试制作项目模板,但有关此文档的文档不完整或不存在。

对某些模板文件进行一些逆向工程,我们提出了以下建议。但是,它实际上并没有工作!

首先,我们已经发现应该在里面安装项目模板:

〜/ Library / Application Support / Developer / Shared / Xcode / Project Templates

我们已经制作了项目并在这里安装了,这部分工作 - 我们看到这个显示在Xcode“New Project”选择器的“User Templates”部分。

项目文件夹包含以下文件。正如您所看到的,我希望文件名被替换(该部分有效),但正如您将看到的,我还希望替换文件的内容;这不会发生。

  • ___ PROJECTNAME ___。xcodeproj
  • ___ PROJECTNAMEASIDENTIFIER ____ Prefix.pch
  • ___ PROJECTNAMEASIDENTIFIER ___。icns
  • ___ PROJECTNAMEASIDENTIFIER ___ Delegate.h
  • ___ PROJECTNAMEASIDENTIFIER ___ Delegate.m
  • ___ PROJECTNAMEASIDENTIFIER ___ Template.html
  • Debug.xcconfig
  • en.lproj
  • Info.plist
  • Release.xcconfig

我在___ PROJECTNAME ___。xcodeproj包中添加了两个特殊文件:

  • TemplateInfo.plist
  • TemplateIcon.icns - 显示在“新建项目”窗口中的图标

如果我使用此模板创建一个新项目(称为“Foo& Bar”作为压力测试),这些是它创建的文件:

  • Debug.xcconfig
  • en.lproj
  • Foo& Bar.xcodeproj
  • 富___ Bar_Prefix.pch
  • 富___ Bar.icns
  • 富___ BarDelegate.h
  • 富___ BarDelegate.m
  • 富___ BarTemplate.html
  • 的Info.plist
  • Release.xcconfig

到目前为止一切顺利!

但是查看文件内容,我会得到这样的东西。这是Foo ___ BarDelegate.m的内容:

//
//  «PROJECTNAMEASIDENTIFIER»Delegate.m
//  «PROJECTNAME»
//
//  Created by «FULLUSERNAME» on «DATE».
//  Copyright «ORGANIZATIONNAME» «YEAR» . All rights reserved.
//

#import "«PROJECTNAMEASIDENTIFIER»Delegate.h"


@implementation «PROJECTNAMEASIDENTIFIER»Delegate

@end

显而易见的问题是我在某种程度上对TemplateInfo.plist做错了。但话又说回来,请注意我的特殊物品不仅没有被替换,而且标准物品甚至都没有被替换!所以这可能是一个更深层次的问题。

但是有问题的TemplateInfo.plist是我最好的假设,我提出了一些我尝试过的变种。都没有工作。

或者:

{
    FilesToMacroExpand = (
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_\_Prefix.pch",
        "en.lproj/InfoPlist.strings",
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_\_Prefix.pch",
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_.icns",
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_Delegate.h",
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_Delegate.m",
        "\_\_\_PROJECTNAMEASIDENTIFIER\_\_\_Template.html",
        "Info.plist"
    );
    Description = "This project builds a cocoa-based \"element\" plugin for Sandvox.";
}

或:

{
    FilesToMacroExpand = (
        "«PROJECTNAMEASIDENTIFIER»\_Prefix.pch",
        "en.lproj/InfoPlist.strings",
        "«PROJECTNAMEASIDENTIFIER»\_Prefix.pch",
        "«PROJECTNAMEASIDENTIFIER».icns",
        "«PROJECTNAMEASIDENTIFIER»Delegate.h",
        "«PROJECTNAMEASIDENTIFIER»Delegate.m",
        "«PROJECTNAMEASIDENTIFIER»Template.html",
        "Info.plist"
    );
    Description = "This project builds a cocoa-based \"element\" plugin for Sandvox.";
}

更新:我也尝试添加“FilesToRename”键,即使___似乎会自动导致重命名发生。这是以XML格式提供的plist内容(因为有些人担心UTF-8的性质 - 是的,它是有效的plist):

<?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>Description</key>
    <string>This project builds a cocoa-based "element" plugin for Sandvox.</string>
    <key>FilesToMacroExpand</key>
    <array>
        <string>«PROJECTNAMEASIDENTIFIER»_Prefix.pch</string>
        <string>en.lproj/InfoPlist.strings</string>
        <string>«PROJECTNAMEASIDENTIFIER».icns</string>
        <string>«PROJECTNAMEASIDENTIFIER»Delegate.h</string>
        <string>«PROJECTNAMEASIDENTIFIER»Delegate.m</string>
        <string>«PROJECTNAMEASIDENTIFIER»Template.html</string>
        <string>Info.plist</string>
    </array>
    <key>FilesToRename</key>
    <dict>
        <key>___PROJECTNAMEASIDENTIFIER___.icns</key>
        <string>«PROJECTNAMEASIDENTIFIER».icns</string>
        <key>___PROJECTNAMEASIDENTIFIER___Delegate.h</key>
        <string>«PROJECTNAMEASIDENTIFIER»Delegate.h</string>
        <key>___PROJECTNAMEASIDENTIFIER___Delegate.m</key>
        <string>«PROJECTNAMEASIDENTIFIER»Delegate.m</string>
        <key>___PROJECTNAMEASIDENTIFIER___Template.html</key>
        <string>«PROJECTNAMEASIDENTIFIER»Template.html</string>
        <key>___PROJECTNAMEASIDENTIFIER____Prefix.pch</key>
        <string>«PROJECTNAMEASIDENTIFIER»_Prefix.pch</string>
        <key>___PROJECTNAME___.xcodeproj</key>
        <string>«PROJECTNAME».xcodeproj</string>
    </dict>
</dict>
</plist>

6 个答案:

答案 0 :(得分:4)

您可能想要使用“FilesToRename”部分。以下内容来自PyObjC Cocoa Document Based Application模板。它工作正常。

    <?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>Description</key>
        <string>This project builds a Cocoa-based application written in Python that uses the NSDocument architecture.</string>
        <key>FilesToMacroExpand</key>
        <array>
                <string>«PROJECTNAME»_Prefix.pch</string>
                <string>Info.plist</string>
                <string>English.lproj/InfoPlist.strings</string>
                <string>English.lproj/MainMenu.xib</string>
                <string>English.lproj/«PROJECTNAMEASIDENTIFIER»Document.xib</string>
                <string>main.py</string>
                <string>«PROJECTNAMEASIDENTIFIER»Document.py</string>
                <string>main.m</string>
        </array>
        <key>FilesToRename</key>
        <dict>
                <key>CocoaAppDocument.py</key>
                <string>«PROJECTNAMEASIDENTIFIER»Document.py</string>
                <key>CocoaDocApp_Prefix.pch</key>
                <string>«PROJECTNAMEASIDENTIFIER»_Prefix.pch</string>
                <key>English.lproj/CocoaAppDocument.xib</key>
                <string>English.lproj/«PROJECTNAMEASIDENTIFIER»Document.xib</string>
        </dict>
</dict>
</plist>

答案 1 :(得分:4)

另一个资源是Jesse Grosjean的XcodeTemplateFactory。它是免费和开源的,可以为您节省未来的麻烦。

答案 2 :(得分:3)

除了Chris的答案(“有两种样式的模板......”),您可以在另一个平台的模板中找到新样式的示例......

以下摘录显示了使用三重下划线的一些典型替代变量的示例;如果您在Foo ___ BarDelegate.m中使用这些代替基于guillamot的变量,它应该可以工作。

//
//  ___PROJECTNAMEASIDENTIFIER___AppDelegate.m
//  ___PROJECTNAME___
//
//  Created by ___FULLUSERNAME___ on ___DATE___.
//  Copyright ___ORGANIZATIONNAME___ ___YEAR___. All rights reserved.
//

#import "___PROJECTNAMEASIDENTIFIER___AppDelegate.h"

@implementation ___PROJECTNAMEASIDENTIFIER___AppDelegate

答案 3 :(得分:2)

有两种样式的模板,由模板宏分隔符区分:旧样式使用UTF-8文件中的MacRoman guillamots,新样式使用三重下划线。你不能混搭。新样式仅适用于3.1及更高版本,您必须使用文件名中的三重下划线进行替换。

答案 4 :(得分:0)

为什么你错过了那些“&lt;&lt;&lt;”像符号?这就是xcode无法识别和替换模板标签的原因..

答案 5 :(得分:0)

我只是在同样的问题上喋喋不休!

对我来说,在plist工程中添加文件,我用php文件更改了html文件并对其进行了解析。 但是现在它确实只从列表中解析了几个第一项。 旧的html文件仍然是:«PROJECTNAME» 像这个程序不计算列表中有多少项...

但代码中的位置在哪里,它没有那样做??