Open matejhocevar opened 6 years ago
Where did you implement PlaceholderDelegate
?
You can’t say that the placeholderDelegate = self
if self
doesn’t implement the delegate at any extension.
You need to call placeholderDelegate optional.
like that;
myTableView?.placeholderDelegate = self
Hey!
I'm new to iOS development. And I found this plugin very interesting, so I want to implement it. But I stumble upon a problem that I cannot resolve.
My code like looks like this:
I got an error
EXC_BAD_ACCESS (code=2, address=0x1b4b2ec80)
at the linemyTableView.placeholderDelegate = self
.Can someone help me?
Thank you