- metadataQuery:replacementObjectForResultObject:
Returns a different object for a given query result object.
与えられた照会結果オブジェクトに対して異なるオブジェクトを返します。
Availability 有効性
Technology
- (id)metadataQuery:(NSMetadataQuery
*)query
replacementValueForAttribute:(NSString
*)attrName
value:(id)attrValue;
query
The query that produced the result object with attribute
.
attribute
を持つ結果オブジェクトを生成した照会。
attribute
The attribute in question. 問題の属性。
attributeValue
The attribute value to replace. 置き換える属性値。
Object that replaces the value of attribute
in the result object
結果オブジェクトにおいてattribute
の値を置き換えるオブジェクト。
The delegate implementation of this method could convert specific query attribute values to other attribute values, for example, converting date object values to formatted strings for display. このメソッドの委任先実装は、特定の照会属性値を他の属性値へ変換できます、例えば、日付オブジェクト値を表示用に書式設定された文字列へ変換します。
- metadataQuery:replacementObjectForResultObject: