在ios7中将细线边框添加到UiToolbar的底部

时间:2014-04-19 04:13:08

标签: ios7 uitoolbar

我想删除顶部的顶部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.)

由于

1 个答案:

答案 0 :(得分:3)

从-positionForBar:delegate方法返回UIBarPositionTop也将实现您正在寻找的结果。

iOS7 UIStatusBar blur not correct