I can add a border to a CALayer in this way:
[webView.layer setBorderColor: [[UIColor colorWithRed:0.6 green:0.7 blue:0.2 alpha:1] CGColor]];
[webView.layer setBorderWidth: 2.75];
But is it possible to add a border only at one side? I only need a border at the bottom. Or can I reach this with other properties, e.g. frame, bounds, mask, ...?

Thanks for your help!
@Control-V
UIWebView *webView = [[UIWebView alloc] init];
CALayer *webViewLayer = webView.layer;
// now you can do a lot of stuff like borders:
[webViewLayer setBorderColor: [[UIColor greenColor] CGColor]];
[webViewLayer setBorderWidth: 2.75];
Have a look at the CALayer dokumentation: http://developer.apple.com/library/mac/#documentation/GraphicsImaging/Reference/CALayer_class/Introduction/Introduction.html
And have a look here: http://iphonedevelopertips.com/cocoa/add-rounded-corners-and-border-to-uiwebview.html
UIWebViewto be a non-introspectable and fully opaque object. Don't even try to go mucking around with things like its layer (since its layer is NOT aCALayer, but rather aCATiledLayer, for example), becauseUIWebViewcan be VERY particular about how things are supposed to be configured. – Dave DeLong Aug 11 '11 at 15:19