Many questions tonight. Tricky inheritance issue
I have a protocol and I put properties in it so that external people could use them.
Class a implements that protocol, and synthesizes the properties in its .m file
Class b extends class a and implements a new protocol which extends class a's protocol. Class b complains that the methods are not synthesized, presumably because it doesn't know about class a's .m definition of them.
Should I just avoid properties in protocols?
Class a implements that protocol, and synthesizes the properties in its .m file
Class b extends class a and implements a new protocol which extends class a's protocol. Class b complains that the methods are not synthesized, presumably because it doesn't know about class a's .m definition of them.
Should I just avoid properties in protocols?
Possibly Related Threads...
| Thread: | Author | Replies: | Views: | Last Post | |
| Tricky bug | markhula | 3 | 4,297 |
Aug 27, 2011 12:57 AM Last Post: markhula |
|

