Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Auto property synthesis will not synthesize property declared in protocol -- which one? [closed]

It's nice that it tells that there is such a property that I have to synthesize, but is there any way I can figure out which one it is w/o going through the documentation? I'm implementing the UITextInput protocol and can't figure out what's missing.

like image 429
Lescai Ionel Avatar asked May 03 '13 09:05

Lescai Ionel


1 Answers

You will have to explicitly synthesize all properties you inherit through conforming to a protocol. So just synthesize them all.

like image 166
Mike Weller Avatar answered Oct 18 '22 09:10

Mike Weller