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.

i want like this http://savepic.ru/3302429.png

but i get - http://savepic.ru/3296285.png

how you can see all input text - black ofc i can fix it -

for (UIView * v in _searchBar.subviews) {
        if ([v isKindOfClass:NSClassFromString(@"UITextField")]) {
            UITextField * t = (UITextField *)v;
            t.textColor = [UIColor whiteColor];
        }
    } 

and text be white BUT search icon and icon - "x" still black (

anybody have any ideas how i can fix it ?

share|improve this question
Try to increase your acceptance rate so that you can get better result. – Siba Prasad Hota Nov 21 '12 at 13:19
I dont undestand .... I can get white input text color but icons search and clear be black ... – Дима Савичев Nov 22 '12 at 8:33

1 Answer

Try the following code.

UITextField *searchField = [searchbar valueForKey:@"_searchField"];
searchField.textColor = [UIColor whiteColor];

OR

for(UIView *sub View in searchBar.subviews){
            if([subView isKindOfClass:UITextField.class]){
                [(UITextField*)subView setTextColor:[UIColor whiteColor]];
            }
        }

Hope it will work for you.

share|improve this answer
Hi ) you show me my code )) see my topic ) – Дима Савичев Nov 22 '12 at 8:34
I can get white text color but me need black icons - search and clear ) – Дима Савичев Nov 22 '12 at 8:35
Or you think setter setTextColor better ? Ok i try ;) i think setter .textColor == setTextColor – Дима Савичев Nov 22 '12 at 8:37
stackoverflow.com/questions/10513858/… try this for changing the icon. – Siba Prasad Hota Nov 22 '12 at 8:48
nope ! icons still black – Дима Савичев Nov 22 '12 at 9:04
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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