This document。解释了如何以编程方式将NSTextview(可以滚动)添加到窗口。但是,如何以编程方式将NSTextView添加到NSScrollView?
编辑:这是适用于Windows的代码。我希望能够以编程方式将NSTextView插入到使用Interface Builder创建的NSScrollView中
-(IBAction)drawTextViews:(id)sender {
NSScrollView *scrollview = [[NSScrollView alloc]
initWithFrame:[[theWindow contentView] frame]];
NSSize contentSize = [scrollview contentSize];
NSTextView *theTextView = [[NSTextView alloc] initWithFrame:NSMakeRect(0, 0,
contentSize.width, contentSize.height)];
[theTextView setMinSize:NSMakeSize(0.0, contentSize.height)];
[theTextView setMaxSize:NSMakeSize(FLT_MAX, FLT_MAX)];
[theTextView setVerticallyResizable:YES];
[theTextView setHorizontallyResizable:NO];
[theTextView setAutoresizingMask:NSViewWidthSizable];
[[theTextView textContainer]
setContainerSize:NSMakeSize(contentSize.width, FLT_MAX)];
[[theTextView textContainer] setWidthTracksTextView:YES];
[scrollview setDocumentView:theTextView];
[theWindow setContentView:scrollview];
[theWindow makeKeyAndOrderFront:nil];
[theWindow makeFirstResponder:theTextView];*/
[[theTextView enclosingScrollView] setHasHorizontalScroller:YES];
[theTextView setHorizontallyResizable:YES];
[theTextView setAutoresizingMask:(NSViewWidthSizable | NSViewHeightSizable)];
[[theTextView textContainer] setContainerSize:NSMakeSize(FLT_MAX, FLT_MAX)];
[[theTextView textContainer] setWidthTracksTextView:NO];
答案 0 :(得分:0)
正如评论中所指出的,您可以通过将其设置为文档视图来在滚动视图中实现NSTextView。如果您希望textview只占用滚动视图的一小部分,则必须以另一种方式构造它。你想达到的目标是什么?
答案 1 :(得分:0)
我还遇到了可编辑创建可滚动NSTextView的问题。根据我的尝试,我创建了工作示例应用:How to create scrollable NSTextView programmatically?。
以下是相关代码:
- (void)viewDidLoad {
[super viewDidLoad];
CGFloat margin = 20;
NSRect scrollViewRect = NSMakeRect(
margin,
margin,
self.view.bounds.size.width - margin * 2,
self.view.bounds.size.height - margin * 2
);
NSScrollView *scrollview = [[NSScrollView alloc] initWithFrame:scrollViewRect];
scrollview.backgroundColor = [[NSColor blueColor] colorWithAlphaComponent:0.2];
scrollview.drawsBackground = YES;
NSSize contentSize = [scrollview contentSize];
scrollview.borderType = NSGrooveBorder;
scrollview.hasVerticalScroller = YES;
scrollview.hasHorizontalScroller = NO;
scrollview.autoresizingMask = NSViewWidthSizable | NSViewHeightSizable;
NSTextView *theTextView = [[NSTextView alloc] initWithFrame:scrollview.bounds];
theTextView.drawsBackground = NO;
theTextView.minSize = NSMakeSize(0.0, contentSize.height);
theTextView.maxSize = NSMakeSize(CGFLOAT_MAX, CGFLOAT_MAX);
theTextView.verticallyResizable = YES;
theTextView.horizontallyResizable = NO;
theTextView.autoresizingMask = NSViewWidthSizable;
theTextView.textContainer.containerSize = NSMakeSize(contentSize.width, CGFLOAT_MAX);
theTextView.textContainer.widthTracksTextView = YES;
NSString *string = @"Once upon a time there was a little-known patent clerk in Bern who received a disappointing annual performance review in ’05";
[theTextView insertText:string replacementRange:NSMakeRange(0, 0)];
scrollview.documentView = theTextView;
[self.view addSubview:scrollview];
}