1

我正在处理我的应用程序的 GUI。我有一个嵌入到 NSScrollView 中的主视图。当用户点击一个按钮时,它的内容会被刷新。然后它确定显示内容所需的高度。视图显示不好,有很多故障,显示两次的项目...我知道问题是当我使用 [self setBounds: ...] 设置视图大小时。你知道我如何改变视图大小吗?这是代码:

CGFloat allHeight= 0.0;
for(int i=0; i < [publications count]; i++) {
        Publication* pub= [publications objectAtIndex:i];
        CGFloat pubHeight= [self heightForTextStorage:[pub statusContent] withWidth:300];
    if (pubHeight < 100.0) 
        pubHeight= 100.0;
    allHeight += pubHeight;
}

if (allHeight > [[self superview] bounds].size.height) {
    NSRect allBounds= self.frame;
    allBounds.size.height= allHeight;
    [self setFrame:allBounds];
}
else {
    NSRect allBounds= [[self superview] bounds];
    [self setFrame:allBounds];
}

提前致谢!

4

1 回答 1

0

我再次找到了解决方案。我正在更改 drawRect 方法中的 nsview 边界(尽管它是在进行任何绘图之前)。我把那段代码放在别处,现在它可以正常工作了。

于 2011-01-02T15:41:29.540 回答