作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
Lion 中的自动布局应该可以非常简单地让文本字段(以及标签)随其包含的文本一起增长。
文本字段在 Interface Builder 中设置为换行。
有什么简单而可靠的方法可以做到这一点?
最佳答案
NSView
中的方法 intrinsicContentSize
返回 View 本身认为的内在内容大小。
NSTextField
计算此值时不考虑其单元格的 wraps
属性,因此如果文本布局在单行上,它将报告文本的尺寸。
因此,NSTextField
的自定义子类可以重写此方法以返回更好的值,例如单元格的 cellSizeForBounds:
方法提供的值:
-(NSSize)intrinsicContentSize
{
if ( ![self.cell wraps] ) {
return [super intrinsicContentSize];
}
NSRect frame = [self frame];
CGFloat width = frame.size.width;
// Make the frame very high, while keeping the width
frame.size.height = CGFLOAT_MAX;
// Calculate new height within the frame
// with practically infinite height.
CGFloat height = [self.cell cellSizeForBounds: frame].height;
return NSMakeSize(width, height);
}
// you need to invalidate the layout on text change, else it wouldn't grow by changing the text
- (void)textDidChange:(NSNotification *)notification
{
[super textDidChange:notification];
[self invalidateIntrinsicContentSize];
}
关于cocoa - 如何让 NSTextField 在自动布局中随着文本增长?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10463680/
我是一名优秀的程序员,十分优秀!