Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My array is like

{
    "Samsung Tab",
    "Samsung Note",
    "Samsung Galaxy",
    "Samsung Galaxy Pro",
    "Nokia Lumia",
    "Nokia 5130",
    "Sony Xperia"
}     

Some thing like that. I have text box type GALAXY and click the button. I want to show only Samsung Galaxy , Samsung Galaxy Pro in next list view. Can anyone help me?.

share|improve this question
2  
whathaveyoutried.com – xlc Feb 11 at 6:26
Do you need to search an array? Setup a view controller? Make a transition between controllers? This is too vague – Dmitry Shevchenko Feb 11 at 6:30
Bad, bad, bad question. I need a biscuit. – skinnyTOD Feb 11 at 6:35
@yugesh you should use predicate to filter an array. – Narayana Feb 11 at 6:49

closed as not a real question by Dmitry Shevchenko, skinnyTOD, Mehul, Pekka 웃, Graviton Feb 19 at 2:48

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

5 Answers

up vote 1 down vote accepted

Take Two NSMutableArray and add one array to another array in ViewDidLoad method such like,

self.listOfTemArray = [[NSMutableArray alloc] init]; // array no - 1
self.ItemOfMainArray = [[NSMutableArray alloc] initWithObjects:@"YorArrayList", nil]; // array no - 2 

[self.listOfTemArray addObjectsFromArray:self.ItemOfMainArray]; // add 2array to 1 array

And Write following delegate Method of UISearchBar

- (BOOL) textFieldDidChange:(UITextField *)textField
 {
        NSString *name = @"";
        NSString *firstLetter = @"";

    if (self.listOfTemArray.count > 0)
         [self.listOfTemArray removeAllObjects];

        if ([searchText length] > 0)
        {
                for (int i = 0; i < [self.ItemOfMainArray count] ; i = i+1)
                {
                        name = [self.ItemOfMainArray objectAtIndex:i];

                        if (name.length >= searchText.length)
                        {
                                firstLetter = [name substringWithRange:NSMakeRange(0, [searchText length])];
                                //NSLog(@"%@",firstLetter);

                                if( [firstLetter caseInsensitiveCompare:searchText] == NSOrderedSame )
                                {
                                    // strings are equal except for possibly case
                                    [self.listOfTemArray addObject: [self.ItemOfMainArray objectAtIndex:i]];
                                    NSLog(@"=========> %@",self.listOfTemArray);
                                }
                         }
                 }
         }
         else
         {
             [self.listOfTemArray addObjectsFromArray:self.ItemOfMainArray ];
         }

        [self.tblView reloadData];
}

}

Output Show in your Consol.

This code might helpful for you...thanks :)

share|improve this answer

Use predicate to filter an array like below

NSArray *arrayMobiles= [NSArray arrayWithObjects:@"Samsung Tab",@"Samsung Note", @"Samsung Galaxy", @"Samsung Galaxy Pro", @"Nokia Lumia", @"Nokia 5130",@"Nokia 5130",@"Sony Xperia", nil];
NSString *strSearchkey = @"GALAXY";
NSPredicate *containPred = [NSPredicate predicateWithFormat:@"SELF contains[cd] %@", strSearchkey];
NSArray *arrayFilter = [arrayMobiles filteredArrayUsingPredicate:containPred];
NSLog(@"%@",arrayFilter);
//output 
"Samsung Galaxy",
"Samsung Galaxy Pro"
share|improve this answer

This may help you

- (void)searchArrayFrom: (NSString *) matchString{

NSString *upString = [matchString uppercaseString];
if (searchArray){[searchArray release];searchArray = nil;}
searchArray = [[NSMutableArray alloc] init];
NSMutableArray *temp = [internalEvents copy];

for (int i=0;i<[temp count];i++)
{
    NSString *str = [internalEvents objectAtIndex:i];
    // Add everyone when there's nothing to match to
    if ([matchString length] == 0)
    {
        [searchArray addObject:str];

        continue;
    }

    // Add the person if the string matches

    NSRange range = [[str uppercaseString] rangeOfString:upString];
    if (range.location != NSNotFound) {
        [searchArray addObject:str];
    }
}


[temp release];
temp = nil;
[tblView reloadData];

}

share|improve this answer

You can use the below given function :

- (void)searchAutocompleteEntriesWithSubstring:(NSString *)substring
{
        for (int i = 0; i < [yourArray count]; i++)
        {
            NSString *curString = [[yourArray objectAtIndex:i]lowercaseString];
            NSString *searchString = [substring lowercaseString];

            if ([curString rangeOfString:curStringSmall].location == NSNotFound)
            {
            }
            else
            {
                //This means searched text is found in your array. you can store it in new array. Which will give you only the search criteria matched element.
            }
        }
}

You need to call this function on the click of your search button. Like :

-(void)searchButtonClicked
{
     [self searchAutocompleteEntriesWithSubstring:txtSearch.text];
}
share|improve this answer

you might use the NSPrediction

NSString * SEARCH_KEYWORD = @"s";

NSMutableArray *array =
    [NSMutableArray arrayWithObjects:@"Bill", @"Ben", @"Chris", @"Melissa", nil];

NSPredicate *sPredicate =
   [NSPredicate predicateWithFormat:@"SELF contains[c] '%@'", SEARCH_KEYWORD];
[array filterUsingPredicate:sPredicate];
// array now contains { @"Chris", @"Melissa" } 
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.