objective-c – NSScrollview不能以编程方式滚动?

注意:水平和垂直滚动条都可以在屏幕上看到并且工作正常.但是我不能让它们以编程方式移动.

我正在使用可可桌面应用程序.我在我的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];
}

相关文章

我正在用TitaniumDeveloper编写一个应用程序,它允许我使用Ja...
我的问题是当我尝试从UIWebView中调用我的AngularJS应用程序...
我想获取在我的Mac上运行的所有前台应用程序的应用程序图标....
我是一名PHP开发人员,我使用MVC模式和面向对象的代码.我真的...
OSX中的SetTimer在Windows中是否有任何等效功能?我正在使用...
我不确定引擎盖下到底发生了什么,但这是我的设置,示例代码和...