I'm using inputAccessoryView for one of my custom subclasses of UIViewController, which subclasses UIResponder.
The Apple Developer Class Reference for -[UIResponder inputAccessoryView] states:
Subclasses that want to attach custom controls to either a system-supplied input view (such as the keyboard) or a custom input view (one you provide in the
inputViewproperty) should redeclare [theinputAccessoryView] property asreadwriteand use it to manage their custom accessory view.
- After redeclaring
inputAccessoryView, must I then@synthesizeit? Doing so seemed to be the only way to get it to compile, but I want to use Apple'sinputAccessoryViewivar, not synthesize my own. - Can I redeclare
inputAccessoryViewasnonatomic? - If I cannot redeclare
inputAccessoryViewasnonatomic, then must I always to accessinputAccessoryViewwithself.inputAccessoryView, i.e., via the property instead of directly accessing the ivar, in order to preserve thread safety?