Skip to content
Advertisement

class and extending interface in objective c

I know bit of ts and I am new to Objective C.

I have a meeting param which I want to extend in meeting obj (MeetingConfig.h) file

JavaScript

How can I do that? (right now I know there is redundant code)

Also, I know I am mixing language but can someone tell me what would be the equivalence of this code from Java in objective C?

JavaScript

For now, I have made this as MeetingConfig.m file

JavaScript

Which I am hoping is equivalent to my this file

JavaScript

Advertisement

Answer

Just for the MeetingConfig definition, you can do something like, in MeetingConfig.h:

JavaScript

and, in MeetingConfig.m:

JavaScript

Finally, an example of using this:

JavaScript

The important differences between this and what you had put together:

  • Addition of the readonly attribute to each property, to ensure the corresponding set* methods weren’t synthesised, as they would conflict with the fluent versions
  • Modification to init and setters to update the instance variables directly
  • Changing the signature and implementation of each setter method to return a pointer to self, making them fluent

You’ll need to take a look a the documentation for @property, and other sources to get a sense of which attributes need to be set, I don’t have enough experience to be absolutely sure on that front.

User contributions licensed under: CC BY-SA
1 People found this is helpful
Advertisement