- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想创建一个 NSView 容器,以便添加的任何 NSControl 对象都应该右对齐。
我已向 MyCustomNSView 类添加了一个方法,如下所示。目前我正在添加左对齐的按钮。
- (void) _addButton:(NSString *)title withIdentifier:(NSString *)identifier {
NSButton *button = [[NSButton alloc] initWithFrame:NSMakeRect(100 * [_buttonIdentifierList count] + 10 , 5, 70, 20)];
[button setTitle:title];
[button setAction:@selector(actionButtonPressed:)];
[button setTarget:self];
[button setIdentifier:identifier];
[self addSubview:button];
[_buttonIdentifierList addObject:identifier];
}
那么我必须对上述方法进行哪些修改才能从右侧添加对象。
我打算用数学方法来实现(生成将生成右对齐原点的帧原点)。我也尝试过使用 NSLayoutConstrains 但没有成功。如何使用自动布局来做到这一点?
最佳答案
要通过手动定位来完成此操作,您将计算按钮的框架,如下所示:
NSButton *button = [[NSButton alloc] initWithFrame:NSMakeRect(NSMaxX(self.bounds) - (100 * [_buttonIdentifierList count] + 10) - 70, 5, 70, 20)];
也就是说,您采用当前的计算结果,即向右(从左边缘)的偏移量,并将其取反以使其成为向左的偏移量。您添加包含 View 的右边缘的值,使其成为距右边缘的偏移量。这已经计算出按钮右边缘的 X 位置,因此您减去按钮的宽度即可得到按钮的原点,该原点位于其左边缘。
要使用自动布局(使用NSLayoutConstraint
),您可以这样做:
NSButton *button = [[NSButton alloc] initWithFrame:NSZeroRect];
[button setTitle:title];
[button setAction:@selector(actionButtonPressed:)];
[button setTarget:self];
[button setIdentifier:identifier];
button.translatesAutoresizingMaskIntoConstraints = NO;
[self addSubview:button];
__block NSButton* previousButton = nil;
if (_buttonIdentifierList.count)
{
NSString* previousButtonIdentifier = _buttonIdentifierList.lastObject;
[self.subviews enumerateObjectsUsingBlock:^(NSView* subview, NSUInteger idx, BOOL *stop){
if ([subview.identifier isEqualToString:previousButtonIdentifier])
{
previousButton = (NSButton*)subview;
*stop = YES;
}
}];
}
NSDictionary* metrics = @{ @"buttonWidth": @70,
@"buttonHeight": @20,
@"buttonSeparation": @30,
@"horizontalMargin": @10,
@"verticalMargin": @5 };
if (previousButton)
{
NSDictionary* views = NSDictionaryOfVariableBindings(button, previousButton);
NSArray* constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"[button(buttonWidth)]-(buttonSeparation)-[previousButton]" options:NSLayoutFormatAlignAllBaseline metrics:metrics views:views];
[self addConstraints:constraints];
}
else
{
NSDictionary* views = NSDictionaryOfVariableBindings(button);
NSArray* constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"[button(buttonWidth)]-(horizontalMargin)-|" options:0 metrics:metrics views:views];
[self addConstraints:constraints];
constraints = [NSLayoutConstraint constraintsWithVisualFormat:@"V:[button(buttonHeight)]-(verticalMargin)-|" options:0 metrics:metrics views:views];
[self addConstraints:constraints];
}
[_buttonIdentifierList addObject:identifier];
如果您跟踪按钮而不是标识符,那么查找 previousButton
将会被简化。如果您有一个按钮对象,则很容易获取其标识符,但相反(当您只有标识符时获取按钮对象)就没那么简单了。
如果您想让按钮保持其自然宽度和高度,而不是固定值,则可以省略这些宽度/高度说明符(即,使用 [button]
而不是比 [button(buttonWidth)]
)。如果您希望所有按钮具有相同的宽度,但让系统选择自然最宽的按钮的宽度,您可以使用[button(==previousButton)]
。由于按钮的默认压缩阻力优先级高于其内容拥抱优先级,因此它将选择不会压缩其中任何一个的最小宽度。
如果您希望按钮之间的距离为标准距离,而不是 30 点的固定值,则可以使用 -
而不是 -(buttonSeparation)-
。同样,如果您希望它们成为距 super View 边缘的标准距离,则可以使用 -
而不是 -(horizontalMargin)-
或 -(verticalMargin)-
.
关于macos - 创建右对齐的 NSView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25697595/
我是一名优秀的程序员,十分优秀!