注意:水平和垂直滚动条都可以在屏幕上看到并且工作正常.但是我不能让它们以编程方式移动.
我正在使用可可桌面应用程序.我在我的Mainmenu.xib文件中使用NSScrollview,我在其所有者Appdelegate.h中创建了一个插座.
这是出路
@property(nonatomic,retain) IBOutlet NSScrollView* scrollview;
当我尝试从界面构建器设置我的NSScrollview的新引用插座并将该行转到文件的所有者时,我只看到一个选项“委托”.我没有看到插件scrollview.
所以我将scrollview连接到文件所有者的委托(因为我看不到scrollview插座).
for(int a=0;a<10000;a++) { NSPoint pointToScrollTo = NSMakePoint ( 100+a,100+a ); // Any point you like. [[self.scrollview contentView] scrollToPoint: pointToScrollTo]; [self.scrollview reflectScrolledClipView: [self.scrollview contentView]]; }
解决方法
NSClipView有一个
scrollToPoint:方法,可用于以编程方式滚动:
- (IBAction)scrollToMid:(id)sender { CGFloat midYPoint = [self.scrollView contentView].frame.size.height/2.0; [[self.scrollView contentView] scrollToPoint:NSMakePoint(0.0,midYPoint)]; [self.scrollView reflectScrolledClipView:[self.scrollView contentView]]; }
如果你想要动画滚动,你必须通过动画师代理设置boundsOrigin. (因为NSScrollView和NSClipView都没有公开可动画的滚动点属性)
- (IBAction)scrollToMidAnimated:(id)sender { [NSAnimationContext beginGrouping]; [[NSAnimationContext currentContext] setDuration:2.0]; NSClipView* clipView = [self.scrollView contentView]; NSPoint newOrigin = [clipView bounds].origin; newOrigin.y = [self.scrollView contentView].frame.size.height/2.0; [[clipView animator] setBoundsOrigin:newOrigin]; [NSAnimationContext endGrouping]; }
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。