* batch run on readme files
* Some manual fixes that couldn't parse
* Some more batch fixes
* Fixed final two edge cases
* Manual fix of a parse error
* Missed bad md whitespace
* Another manual fix of parser error
* Some minor parse fixes
initWithCoder: is the designated initializer for views built from the storyboard
since we are not creating the Cell programatically by calling
RegisterClassForCell we must export initWithCoder: ctor to unmanaged world so
when it needs to create a new cell it calls into our managed initWithCoder:
and do the initialization we want.
This fixes a memory leak, since the event handler was keeping a reference
to the view controller, preventing it from getting freed.
See desk #60817 for a test case.