OStack程序员社区-中国程序员成长平台

标题: iphone - 澄清 Objective-C 中的属性 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 14:07
标题: iphone - 澄清 Objective-C 中的属性

抱歉这个简单的问题。
当我在 h 文件 内看到一个属性的定义,但在 @interface 类范围内 之外,这是什么意思?

@property (nonatomic, readonly) RMMapContents *mapContents;

代码如下:

@class RootViewController;
@class RMMapContents;

@interface MapTestbedAppDelegate : NSObject <UIApplicationDelegate> {
    UIWindow *window;

    //MAIN VIEW
    //==============

    RootViewController *rootViewController;


    // NETWORK DATA
    // =============

    NSMutableArray  *photoTitles;         // Titles of images
    NSMutableArray  *photoSmallImageData; // Image data (thumbnail)
    NSMutableArray  *photoURLsLargeImage; // URL to larger image
    NSMutableData *receivedData;
    NSURLConnection *theConnection;
    NSURLRequest *request;
}

@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) IBOutlet RootViewController *rootViewController;
@property (nonatomic, readonly) RMMapContents *mapContents;


@end

在函数内部我看到这一行:

- (void)fooxyz *)abc{
  ..
  RMMapContents *mapContents = [self mapContents];
  ..
}

因此,从 C++ 中获取,mapContents 似乎不是全局范围的 var(毕竟,这就是他们称它们为属性的原因,对吧?),但定义不同函数里面的名字又有点奇怪?

希望有人能在这里澄清一下。
谢谢!



Best Answer-推荐答案


@interface block 的范围延伸到@end 关键字并且不限于大括号{}。

所以@property 声明非常位于@interface 的范围内,就像 cli_hlt 正确回答一样,它就像 mapContents 属性的 setter 和 getter 方法的替代品。

所以一个名为 mapContents 的属性将具有如下所示的 setter 和 getter:

- (void)setMapContents; //setter

- (RMMapContents *)mapContents; //getter

并且可以使用这些方法从类中访问:

[self setMapContents:newContents];

RMMapContents *contents = [self mapContents];

关于iphone - 澄清 Objective-C 中的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10993091/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4