当导航栏隐藏时,UIButton正在向上移动

时间:2014-06-29 06:27:52

标签: objective-c xcode uitableview ios7 uibutton

我在视图底部添加了一个UIButton -

CGRect frame      = [UIScreen mainScreen].applicationFrame;

UIButton *menu_btn = [[UIButton alloc] initWithFrame:CGRectMake(xOffset, frame.size.height - 55, 55, 55)];
[self.view addSubview:menu_btn];

在视图中我有UITableview,当我在列表中向下滚动并在向上滚动时显示时,我隐藏了uinavigation栏。

menu_btn随列表一起上下移动,我想修复此按钮。

任何人请建议我,我怎么能做到这一点?

1 个答案:

答案 0 :(得分:0)

我在navigationController.view中添加了它的工作正常。谢谢你们。

CGRect frame      = [UIScreen mainScreen].applicationFrame;
UIButton *menu_btn = [[UIButton alloc] initWithFrame:CGRectMake(xOffset, frame.size.height - 55, 55, 55)];
[self.navigationController.view addSubview:menu_btn];