Using Predicate in Swift

139,175

Solution 1

This is really just a syntax switch. OK, so we have this method call:

[NSPredicate predicateWithFormat:@"name contains[c] %@", searchText];

In Swift, constructors skip the "blahWith…" part and just use the class name as a function and then go straight to the arguments, so [NSPredicate predicateWithFormat: …] would become NSPredicate(format: …). (For another example, [NSArray arrayWithObject: …] would become NSArray(object: …). This is a regular pattern in Swift.)

So now we just need to pass the arguments to the constructor. In Objective-C, NSString literals look like @"", but in Swift we just use quotation marks for strings. So that gives us:

let resultPredicate = NSPredicate(format: "name contains[c] %@", searchText)

And in fact that is exactly what we need here.

(Incidentally, you'll notice some of the other answers instead use a format string like "name contains[c] \(searchText)". That is not correct. That uses string interpolation, which is different from predicate formatting and will generally not work for this.)

Solution 2

Working with predicate for pretty long time. Here is my conclusion (SWIFT)

//Customizable! (for me was just important if at least one)
request.fetchLimit = 1


//IF IS EQUAL

//1 OBJECT
request.predicate = NSPredicate(format: "name = %@", txtFieldName.text)

//ARRAY
request.predicate = NSPredicate(format: "name = %@ AND nickName = %@", argumentArray: [name, nickname])


// IF CONTAINS

//1 OBJECT
request.predicate = NSPredicate(format: "name contains[c] %@", txtFieldName.text)

//ARRAY
request.predicate = NSPredicate(format: "name contains[c] %@ AND nickName contains[c] %@", argumentArray: [name, nickname])

Solution 3

Example how to use in swift 2.0

let dataSource = [
    "Domain CheckService",
    "IMEI check",
    "Compliant about service provider",
    "Compliant about TRA",
    "Enquires",
    "Suggestion",
    "SMS Spam",
    "Poor Coverage",
    "Help Salim"
]
let searchString = "Enq"
let predicate = NSPredicate(format: "SELF contains %@", searchString)
let searchDataSource = dataSource.filter { predicate.evaluateWithObject($0) }

You will get (playground)

enter image description here

Solution 4

You can use filters available in swift to filter content from an array instead of using a predicate like in Objective-C.

An example in Swift 4.0 is as follows:

var stringArray = ["foundation","coredata","coregraphics"]
stringArray = stringArray.filter { $0.contains("core") }

In the above example, since each element in the array is a string you can use the contains method to filter the array.

If the array contains custom objects, then the properties of that object can be used to filter the elements similarly.

Solution 5

Use The Below code:

 func filterContentForSearchText(searchText:NSString, scopes scope:NSString)
{
    //var searchText = ""

    var resultPredicate : NSPredicate = NSPredicate(format: "name contains[c]\(searchText)", nil)

    //var recipes : NSArray = NSArray()

    var searchResults = recipes.filteredArrayUsingPredicate(resultPredicate)
}
Share:
139,175
levitatejay
Author by

levitatejay

Updated on July 08, 2022

Comments

  • levitatejay
    levitatejay almost 2 years

    I'm working through the tutorial here (learning Swift) for my first app: http://www.appcoda.com/search-bar-tutorial-ios7/

    I'm stuck on this part (Objective-C code):

    - (void)filterContentForSearchText:(NSString*)searchText scope:(NSString*)scope
    {
        NSPredicate *resultPredicate = [NSPredicate predicateWithFormat:@"name contains[c]         %@", searchText];
        searchResults = [recipes filteredArrayUsingPredicate:resultPredicate];
    }
    

    Can anyone advise how to create an equivalent for NSPredicate in Swift?

  • AppHandwerker
    AppHandwerker almost 10 years
    For some reason writing it like that didn't work for me however doing let myPredicateString = "name contains[c](searchText)" and then doing var resultPredicate : NSPredicate = NSPredicate(format:myPredicateString) did
  • Hugo
    Hugo about 9 years
    Thanks. You save me one day!
  • Ben Packard
    Ben Packard about 9 years
    To address the second line of your method, you might use the predicate as: searchResults = recipes.filter { resultPredicate.evaluateWithObject($0) }
  • Jarsen
    Jarsen almost 9 years
    This is more idiomatic if you're filtering a Sequence, but there are cases where you will need a NSPredicate, like when dealing with NSFetchedResultsController.
  • Revathy Durairajan
    Revathy Durairajan about 8 years
    What if... If i have a array of dictionaries? How do i parse to get the data?
  • Pawan Rai
    Pawan Rai almost 8 years
    @RevathyDurairajan you need SELF.yourkeyname for filtering array of dictionaries.
  • TomSawyer
    TomSawyer almost 8 years
    What's equal with LIKE 'a%z' ?
  • Muju
    Muju about 4 years
    @Jiří Zahálka What is request hear means?