Hi,
We're going to release a new version very soon.
If you urgently need it you could go in objective c code and set the searchBar frame like this:
CGRect statusbarRect = [[UIApplication sharedApplication] statusBarFrame];
    
    if(SYS_VERSION>=7.0)
    {
        float hi = self.navigationController.navigationBar.bounds.size.height;
        _m_searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, hi+statusbarRect.size.height, cwidth, 41)];
    }
    else
    {
        _m_searchBar = [[UISearchBar alloc] initWithFrame:CGRectMake(0, 0, cwidth, 41)];
    }