iOS-Rich-Text-Editor icon indicating copy to clipboard operation
iOS-Rich-Text-Editor copied to clipboard

Add '@dynamic delegate' to RichTextEditorToolbar.m

Open grgcombs opened this issue 9 years ago • 0 comments

RichTextEditorToolbar is a subclass of UIScrollView -- both define their own 'delegate' property and so we get compiler warnings due to assumptions about auto-synthesis of the property.

Please add the following to the RichTextEditorToolbar implementation:

@implementation RichTextEditorToolbar

@dynamic delegate;

// .....

grgcombs avatar May 26 '15 19:05 grgcombs