ios7 UISearchBar

来源:互联网 发布:淘宝注册要打电话验证 编辑:程序博客网 时间:2024/06/10 10:26

if(IOS7BC){

       UIView *topView = VTOSearchBar.subviews[0];

       UIButton *cancelButton;

       for (UIView *subViewin topView.subviews) {

            if([subViewisKindOfClass:[NSClassFromString(@"UINavigationButton")class]]) {

                cancelButton = (UIButton*)subView;

                [cancelButton setBackgroundImage:[UIImageimageNamed:@"xxx.png"]forState:UIControlStateNormal];

                [cancelButtonsetEnabled:YES];

                cancelButton.userInteractionEnabled =YES;

                [cancelButtonsetTitle:@"发布活动" forState:UIControlStateNormal];

            }

        }

    }else{

        [VTOSearchBarsetTintColor:Bar_COLOR];

       for(id cancelbuttonin [VTOSearchBarsubviews])//将取消键换成发布活动

        {

           if([cancelbutton isKindOfClass:[UIButtonclass]])

            {

               UIButton *btn = (UIButton *)cancelbutton;

                [btnsetEnabled:YES];

                btn.userInteractionEnabled =YES;

                [btnsetTitle:@"发布活动"  forState:UIControlStateNormal];

                

            }

        }

    }