使用 QCView 创建的屏幕保护程序在 Snow Leopard 中不起作用

发布于 2024-12-28 03:01:24 字数 1011 浏览 0 评论 0原文

我已经使用以下代码块使用 QCView 准备了屏幕保护程序:

- (id)initWithFrame:(NSRect)frame isPreview:(BOOL)isPreview
{
    self = [super initWithFrame:frame isPreview:isPreview];
    if (self) {

        qcView = [[QCView alloc] init];

        if (!qcView) {
            NSLog(@"could not create qc view");
        }

        [qcView setAutostartsRendering:YES];

        if ([qcView loadCompositionFromFile:[[NSBundle mainBundle] pathForResource:@"AwayMessage" ofType:@"qtz"]] == NO) {
            NSLog(@"Could not load");
        }

        [qcView setFrame:[self bounds]];
        [self addSubview:qcView];

        [self setAnimationTimeInterval:1/30.0];
    }
    return self;
}

问题是 - 当我尝试在系统首选项中查看它时,它是 显示此消息:您不能将 SampleScreenSaver 与 此版本的 Mac OS X。请联系供应商获取更新版本 屏幕保护程序的版本。

我使用以下配置使用 Xcode 3.2.5 来编译它:

架构 - 标准(32/64 位通用)

基础 SDK - Mac OS X 10.6

有效架构 - i386

C/C++ 编译器版本 - GCC 4.0

有人能建议解决方案吗?

I have prepared a screen saver with QCView using this block of code:

- (id)initWithFrame:(NSRect)frame isPreview:(BOOL)isPreview
{
    self = [super initWithFrame:frame isPreview:isPreview];
    if (self) {

        qcView = [[QCView alloc] init];

        if (!qcView) {
            NSLog(@"could not create qc view");
        }

        [qcView setAutostartsRendering:YES];

        if ([qcView loadCompositionFromFile:[[NSBundle mainBundle] pathForResource:@"AwayMessage" ofType:@"qtz"]] == NO) {
            NSLog(@"Could not load");
        }

        [qcView setFrame:[self bounds]];
        [self addSubview:qcView];

        [self setAnimationTimeInterval:1/30.0];
    }
    return self;
}

Problem is - when I am trying to see it in system preferences, it is
showing me this message: You cannot use the SampleScreenSaver with
this version of Mac OS X. Please contact the vendor to get a newer
version of the screen saver.

I am using following configurations to compile it using Xcode 3.2.5:

Architectures - Standard (32/64-bit Universal)

Base SDK - Mac OS X 10.6

Valid Architectures - i386

C/C++ Compiler Version - GCC 4.0

Can anyone suggest solution for it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文