iOS 6.0リリースノートには、次のステートメントがあります。
ビューと、スクロールビューのスーパービューなど、スクロールビューのサブツリーの外側にあるビューとの間に制約を作成することにより、スクロールビューのサブビューを他のスクロールコンテンツ上でフロート(スクロールではない)に見せることができることに注意してください。
誰かアイデアはありますか?
iOS 6.0リリースノートには、次のステートメントがあります。
ビューと、スクロールビューのスーパービューなど、スクロールビューのサブツリーの外側にあるビューとの間に制約を作成することにより、スクロールビューのサブビューを他のスクロールコンテンツ上でフロート(スクロールではない)に見せることができることに注意してください。
誰かアイデアはありますか?
私はいくつか遊んでみました、そして私はある種の実用的な例を持っています。
ビューはスクロールせず、上部に配置されます。高さは、scrollviewの高さと任意の値の差です。
// in viewDidLoad
UIIView *myView = [[UIView alloc] init];
[self.scrollView addSubview:myView];
myView.translatesAutoresizingMaskIntoConstraints = NO;
NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:self.mapView
attribute:NSLayoutAttributeTop
relatedBy:(NSLayoutRelationEqual)
toItem:self.containerView
attribute:(NSLayoutAttributeTop)
multiplier:1.0
constant:0];
[self.view addConstraint:constraint];
// Give my view some intrinsic size
NSDictionary *dict = NSDictionaryOfVariableBindings(myView);
NSArray *constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"|[myView]|"
options:(NSLayoutFormatAlignAllBaseline)
metrics:nil
views:dict];
[self.view addConstraints:constraints];
// In view did appear
// calc height from height of scroll view - this is needs work
float height = -self.scrollView.frame.size.height + 250;
NSLayoutConstraint *constraint = [NSLayoutConstraint constraintWithItem:self.mapView attribute:NSLayoutAttributeHeight
relatedBy:(NSLayoutRelationEqual)
toItem:self.containerView
attribute:(NSLayoutAttributeHeight)
multiplier:1.0
constant:offset];
[self.view addConstraint:constraint];