func contextHelp (for: Any) -> NSAttributedString?
A key in your application's Help
file that identifies the context-sensitive help to return.
あなたのアプリケーションの持つHelp
ファイルの中のあるキー、それは返されることになるコンテキスト対応ヘルプを識別します。
Availability 有効性
Technology
func contextHelp(forKey key: NSHelpManager
.ContextHelpKey
) -> NSAttributedString
?
key
A key in your application's Help
file that identifies the context-sensitive help to return.
あなたのアプリケーションの持つHelp
ファイルの中のあるキー、それは返されることになるコンテキスト対応ヘルプを識別します。
The help string or nil
if the application does not have a Help
file or the file does not contain an entry for the specified key
.
ヘルプ文字列、またはnil
、もしアプリケーションがHelp
ファイルを持たない、または指定されたkey
に対してファイルが何ら登録項目を含まないならば。
When you build your application, you can merge multiple RTF-based help files together using the /usr/bin/compile
tool, which then packages your help file information into a property list named Help
. After placing this property-list file in your application bundle, you can use this method to extract context help information from it. To look up a particular entry, you specify the name of the original RTF help file in the key
parameter of this method. For example, if your application project contains a help file named Copy
, you would retrieve the text from this file by passing the value @"Copy
to the key
parameter.
あなたがあなたのアプリケーションをビルドする時、あなたは複数のRTFに基づくヘルプファイルを、/usr/bin/compile
ツールを使って1つに結合します、それはそれからあなたのヘルプファイル情報をHelp
と名付けられるプロパティリストにまとめます。このプロパティリストファイルをあなたのアプリケーションバンドルの中に置いた後、あなたはこのメソッドを使ってコンテキストヘルプ情報をそれから抽出します。特定の登録項目を捜すには、あなたは元のRTFヘルプファイルの名前をこのメソッドのkey
パラメータにおいて指定します。例えば、あなたのアプリケーションプロジェクトがCopy
と命名されるヘルプファイルを含むならば、あなたはこのファイルからテキストを、値@"Copy
をkey
パラメータに渡すことによって回収します。
This method is declared in NSHelp
.
このメソッドは、NSHelp
において宣言されます。
func contextHelp (for: Any) -> NSAttributedString?