PHPz2017-04-17 17:50:54
The tabBarDidClickAddBtn: method is not declared in the protocol that self.delegate complies with, just declare it
PHPz2017-04-17 17:50:54
The error report has made it very clear: there is no tabBarDidClickAddBtn: method in the class corresponding to your self.delegate.
If you want to bypass it, you can try [self.delegate performSelector:@selector(tabBarDidClickAddBtn:) withObject:self]
.