在某些 iPhone 应用程序中,我看到一个按钮漂浮在内容视图上,例如。在应用 EyeEm 中。当用户滚动内容时,按钮保持在原处并且仍然是交互元素。
我如何实现这个?
我的方法是:
- 创建包含内容的视图
- 在上面放一个按钮
- 但是如何使按钮浮动?
编辑:
浮动似乎是默认行为。有趣的是addSubview
,insertSubview
放置按钮时具有相同的行为......两者都漂浮在内容上。
- (void)addOverlayButton {
UIButton *oButton = [UIButton buttonWithType:UIButtonTypeRoundedRect];
[oButton addTarget:self
action:@selector(aMethod:)
forControlEvents:UIControlEventTouchDown];
[oButton setTitle:@"Show View" forState:UIControlStateNormal];
oButton.frame = CGRectMake(80.0, 210.0, 160.0, 40.0);
[self.view addSubview:oButton];
//[self.view insertSubview:oButton aboveSubview:_scrollView]; // same result as addSubview.
// Both solutions let the button float over the content.
}