无法设置类属性

发布于 2024-09-09 16:05:45 字数 478 浏览 5 评论 0原文

现在我确信我在这里做了一些非常小学生的事情,但是我严重撞到了墙上,由于某种原因,当我尝试在自定义类上设置 NSNumber 属性时,我得到了 EXEC_BAD_ACCESS 。想想我也有这样的日子!

这是我的测试 h 和 m 文件:

//  Test.h

#import <Foundation/Foundation.h>


@interface Test : NSObject {
    NSNumber *myId;
}

@property (nonatomic) NSNumber *myId;

@end


//  Test.m

#import "Test.h"


@implementation Test

@synthesize myId;

@end

我的测试很简单:

Test *test = [[Test alloc] init];
test.myId = 1;

Now Im sure Im doing something extremely schoolboy here, but Im seriously hitting my head against a wall, for some reason Im getting EXEC_BAD_ACCESS when trying to set an NSNumber property on a custom class. Think Im having one of those days!

Here my test h and m files:

//  Test.h

#import <Foundation/Foundation.h>


@interface Test : NSObject {
    NSNumber *myId;
}

@property (nonatomic) NSNumber *myId;

@end


//  Test.m

#import "Test.h"


@implementation Test

@synthesize myId;

@end

My test is simply:

Test *test = [[Test alloc] init];
test.myId = 1;

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

追星践月 2024-09-16 16:05:45
test.myId = [NSNumber numberWithInt:1];
test.myId = [NSNumber numberWithInt:1];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文