-1

我是 Objective C 的新手,所以请原谅我的问题的简单性。

我有一堂课,让我们叫它Class A,它看起来像这样

@interface A()
@property (weak, nonatomic) IBOutlet UISegmentedControl *segment;
@end

@implementation A
  ...

现在我想做的是“获取” class B. 我试过这样做

@interface B()
@property (nonatomic) B *cardy;
@end

@implementation B
 ...

然后我想做cardy.segment,但我似乎无法访问它。我尝试@synthesize在 A 中使用,但需要确保准确地实现“get”。任何建议将不胜感激。

4

1 回答 1

1

在 .h 文件中声明属性,而不是在 .m 文件中。另外,确保在 Bm 中导入 Ah

于 2013-03-05T19:37:54.120 回答