6

Xcode でカスタム テンプレートを作成しようとしています。私の TemplateInfo.plist では、主要なオプションについて、以下にコードを貼り付けています。このテンプレートは、イベントが発生したときに委任を使用する頻度が高いクラス用です (常にではありません)。

私が抱えている問題は、一番下の値にありますRequiredOptions。withProtocol チェックボックスがオンになっている場合にのみ、テキスト ボックスを有効にします。ただし、使用する値と値の型がわかりません。私は次のことを試しました:

  • <true/>(以下のように) - テキスト ボックスは常に有効です。
  • <string>YES</string>- テキスト ボックスは常に無効になっています。
  • <integer>1</integer>- テキスト ボックスは常に有効です。

他に何を試すことができるかについて誰かアイデアがありますか? さらに良いことに、Xcode テンプレートの適切なリファレンスを知っている人はいますか?

私はすでに Apple の plist マニュアル ページとこの Web サイトの記事を読みました。

<array>
    <dict>
        <key>Description</key>
        <string>The name of the class to create</string>
        <key>Identifier</key>
        <string>productName</string>
        <key>Name</key>
        <string>Class</string>
        <key>NotPersisted</key>
        <true/>
        <key>Required</key>
        <true/>
        <key>Type</key>
        <string>text</string>
    </dict>
    <dict>
        <key>Default</key>
        <string>false</string>
        <key>Identifier</key>
        <string>withXIB</string>
        <key>Name</key>
        <string>With XIB for user interface</string>
        <key>Type</key>
        <string>checkbox</string>
    </dict>
    <dict>
        <key>Description</key>
        <string>Choose whether or not a delegate skeleton is included.</string>
        <key>Default</key>
        <string>false</string>
        <key>Identifier</key>
        <string>withProtocol</string>
        <key>Name</key>
        <string>With delegate skeleton</string>
        <key>Type</key>
        <string>checkbox</string>
    </dict>
    <dict>
        <key>Description</key>
        <string>The name of the protocol used for delegation.</string>
        <key>Identifier</key>
        <string>protocolName</string>
        <key>Name</key>
        <string>Protocol</string>
        <key>NotPersisted</key>
        <true/>
        <key>Required</key>
        <true/>
        <key>Type</key>
        <string>text</string>
        <key>RequiredOptions</key>
        <dict>
            <key>withProtocol</key>
            <true/>
        </dict>
    </dict>
</array>
4

2 に答える 2

3

に置き換えることで、自分の問題を修正<true/>しました<string>true</string>

于 2013-02-14T21:13:23.210 に答える