A reference to a map table structure. マップテーブル構造体への参照。
Function
関数
NSString
NSStringFromMapTable(_:)
Returns a string describing the map table’s contents.
マップテーブルの内容を説明している文字列を返します。
Availability 有効性
- iOS 12.0+
- iPadOS 12.0+
- macOS 10.0+
- Mac Catalyst 13.0+
- tvOS 12.0+
- watchOS 5.0+
Technology
- Foundation ファウンデーション
Declaration 宣言
func NSStringFromMapTable(_ table: NSMapTable
<AnyObject, AnyObject>) -> String
Parameters パラメータ
table
Return Value 戻り値
A string describing the map table’s contents. マップテーブルの内容を説明している文字列。
Discussion 議論
The function iterates over the key-value pairs of table
and for each one appends the string “a = b;\n”, where a and b are the key and value strings returned by the corresponding describe
callback functions. If NULL
was specified for the callback function, a and b are the key and value pointers, expressed as hexadecimal numbers.
関数はtable
のキー値ペアすべてにわたって反復します、そしてそれぞれのものに対して文字列 “a = b;\n” を付加します、そこで a と b は、対応するdescribe
コールバック関数によって返されるキーと値文字列です。NULL
がコールバック関数に対して指定されたならば、aとbはキーおよび値のポインターで、16進数として表されます。