I want my search bar to draw its background extended upwards below the status bar like this:
You conform to the UIBarPositioningDelegate protocol and upon properly becoming the delegate for your SearchBar, implement the delegate method as such
UIBarPositioningDelegate
-(UIBarPosition)positionForBar:(id)bar { return UIBarPositionTopAttached; }