I know how to set the border & border-width for a UIView.
#import <QuartzCore/QuartzCore.h>
...
view.layer.borderColor = [UIColor redColor].CGColor;
view.layer.borderWidth = 3.0f;
How do I specify to set the exact same property only for border-bottom? like in CSS we have border-bottom-width etc…
I have checked the Class Reference of the UIView and its layer, but could not find any way to do this with the means given by the os.
You could make a 1(or 2/3 whatever you want) pixel high view that sticks to the bottom of the main view.