菜鸟教程小白 发表于 2022-12-13 14:07:42

iphone - 澄清 Objective-C 中的属性


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

<pre><code>@property (nonatomic, readonly) RMMapContents *mapContents;
</code></pre>

<p>代码如下:</p>

<pre><code>@class RootViewController;
@class RMMapContents;

@interface MapTestbedAppDelegate : NSObject &lt;UIApplicationDelegate&gt; {
    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
</code></pre>

<p>在函数内部我看到这一行:</p>

<pre><code>- (void)foo:(xyz *)abc{
..
RMMapContents *mapContents = ;
..
}
</code></pre>

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

<p>希望有人能在这里澄清一下。<br/>
谢谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>@interfaceblock 的范围延伸到@end 关键字并且不限于大括号{}。 </p>

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

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

<pre><code>- (void)setMapContents; //setter

- (RMMapContents *)mapContents; //getter
</code></pre>

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

<pre><code>;
</code></pre>

<p>与</p>

<pre><code>RMMapContents *contents = ;
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 澄清 Objective-C中的属性,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/10993091/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/10993091/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 澄清 Objective-C 中的属性