I'm not sure what you mean by "in the background" but if you simply want the UIWebView to not be visible, this property is available on all UIView objects:
@property(nonatomic, getter=isHidden) BOOL hidden
Straght from the class reference:
A hidden view disappears from its window and does not receive input events. It remains in
its superview’s list of subviews,
however, and participates in
autoresizing as usual. Hiding a view
with subviews has the effect of hiding
those subviews and any view
descendants they might have. This
effect is implicit and does not alter
the hidden state of the receiver’s
descendants.
Hiding the view that is the window’s
current first responder causes the
view’s next valid key view to become
the new first responder.
The value of this property reflects
the state of the receiver only and
does not account for the state of the
receiver’s ancestors in the view
hierarchy. Thus this property can be
NO if the receiver is hidden because
an ancestor is hidden.