将子视图添加到UINavigationBar会禁用条形按钮的交互

时间:2014-12-07 02:00:38

标签: ios iphone sdk uinavigationbar interaction

我有一个覆盖awakeFromNib的UINavigationBar子类。我只是在导航栏中添加一个UIView子视图。当我这样做时,它会正确显示,但默认后退按钮项的交互被禁用。

感谢任何帮助。

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0, -20, kDeviceWidth, 64)];
view.backgroundColor = [UIColor redColor];
[self insertSubview:view atIndex:0];

[self setBackgroundImage:[UIImage new] forBarMetrics:UIBarMetricsDefault];

0 个答案:

没有答案