MonobjcMonobjc Documented Class Library
PredicateWithFormatArgumentArray Method (predicateFormat, arguments)
NamespacesMonobjc.FoundationNSPredicatePredicateWithFormatArgumentArray(NSString, NSArray)

Creates and returns a new predicate by substituting the values in a given array into a format string and parsing the result.

Original signature is '+ (NSPredicate *)predicateWithFormat:(NSString *)predicateFormat argumentArray:(NSArray *)arguments'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public static NSPredicate PredicateWithFormatArgumentArray(
	NSString predicateFormat,
	NSArray arguments
)
Public Shared Function PredicateWithFormatArgumentArray ( _
	predicateFormat As NSString, _
	arguments As NSArray _
) As NSPredicate
public:
static NSPredicate^ PredicateWithFormatArgumentArray(
	NSString^ predicateFormat, 
	NSArray^ arguments
)
Parameters
predicateFormat (NSString)
The format string for the new predicate.
arguments (NSArray)
The arguments to substitute into predicateFormat. Values are substituted into predicateFormat in the order they appear in the array.
Return Value
A new predicate by substituting the values in arguments into predicateFormat, and parsing the result.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)