删除searchBar 背景

来源:互联网 发布:js 切换显示隐藏 编辑:程序博客网 时间:2024/05/16 11:25

不知道从哪个帖子上看到的 

- (void)removeSearchBarFrame:(UISearchBar *)searchBar

{

    float version = [[[UIDevicecurrentDevice] systemVersion]floatValue];

    

   if ([searchBar respondsToSelector :@selector (barTintColor)]) {

       float  iosversion7_1 = 7.1 ;

       if (version >= iosversion7_1)

        {

           //iOS7.1

            

            [[[[searchBar.subviewsobjectAtIndex:0] subviews]objectAtIndex:0] removeFromSuperview];

            [searchBar setBackgroundColor:[UIColorclearColor]];

        }

       else

        {

           //iOS7.0

            [searchBar setBarTintColor:[UIColorclearColor]];

            [searchBar setBackgroundColor:[UIColorclearColor]];

        }

    }

   else

    {

        //iOS7.0 以下

        

        [[searchBar.subviewsobjectAtIndex:0] removeFromSuperview ];

        [searchBar setBackgroundColor :[UIColor clearColor]];

    }

}



0 0