Objective-C: How do you access parent properties from subclasses?

后端 未结 5 1081
失恋的感觉
失恋的感觉 2020-12-04 16:28

If I have this class defined, how do I access the someObject property in subclasses without compiler errors?

@interface MyBaseClass
  // someObj         


        
5条回答
  •  佛祖请我去吃肉
    2020-12-04 17:11

    The solution you're after is to declare the MyBaseClass private property in a class extension:

    @interface MyBaseClass ()
    @property (nonatomic, readwrite, retain) NSObject *someObject;
    @end
    

    You are then free to make that declaration both in MyBaseClass and in MySubclass. This lets MySubclass know about these properties so that its code can talk about them.

    If the repetition bothers you, put the class extension in a .h file of its own and import it into both .m files.

    I will give an example from my own code. Here is MyDownloaderPrivateProperties.h:

    @interface MyDownloader ()
    @property (nonatomic, strong, readwrite) NSURLConnection* connection;
    @property (nonatomic, copy, readwrite) NSURLRequest* request;
    @property (nonatomic, strong, readwrite) NSMutableData* mutableReceivedData;
    @end
    

    There is no corresponding .m file and that's all that's in this file; it is, as it were, purely declarative. Now here's the start of MyDownloader.m:

    #import "MyDownloader.h"
    #import "MyDownloaderPrivateProperties.h"
    @implementation MyDownloader
    @synthesize connection=_connection;
    @synthesize request=_request;
    @synthesize mutableReceivedData=_mutableReceivedData;
    // ...
    

    And here's the start of its subclass MyImageDownloader.m:

    #import "MyImageDownloader.h"
    #import "MyDownloaderPrivateProperties.h"
    

    Problem solved. Privacy is preserved, as these are the only classes that import MyDownloaderPrivateProperties.h so they are the only classes that know about these properties as far as the compiler is concerned (and that's all that privacy is in Objective-C). The subclass can access the private properties whose accessors are synthesized by the superclass. I believe that's what you wanted to accomplish in the first place.

提交回复
热议问题