我想删除顶部的顶部1px细线显示,并在UiToolbar上添加1px细线到底部。
@property (strong, nonatomic) IBOutlet UIToolbar *uiToolbar;
// This removes the top hairline
uiToolbar.clipsToBounds = YES;
// How do I add a bottom hairline? (Should also resize automatically from portrait and landscape.)
由于
答案 0 :(得分:3)
从-positionForBar:delegate方法返回UIBarPositionTop也将实现您正在寻找的结果。