Xcode4: Different code generated for custom core data managed objects

后端 未结 6 1919
无人共我
无人共我 2020-12-13 07:50

Now that Xcode4 is publicly available I\'m moving this question out of Apple\'s secret dev forum:

Can someone explain why the code generated in the following procedu

6条回答
  •  不知归路
    2020-12-13 08:22

    It looks like all Xcode4 has done is make explicit what the @dynanmic directive makes implicit. The generated code looks exactly like that generated by Xcode3 when you asked it to generate accessors for a particular attribute (to the clipboard.)

    I'm not sure why they decided to do it that way. Possibly they thought it would make it easier for people to create custom accessors if they just gave them the full basic accessor.

    It shouldn't be that hard for someone to shoehorn MOGenerator into Xcode4. Hint, hint. Anyone? Come on guys! Anyone? Bueller?

    Sigh, looks like it me.

提交回复
热议问题