Thank you for a detailed review of your problem, but the only important part is
-[NSCFString numberOfSectionsInTableView:]: unrecognized selector
It is reported that you are calling a method numberOfSectionsInTableView:onNSCFString
which seems wrong
so check where this method is called in your code
And also the rest is not required in your case.
Edit:
You have released your custom cell in the delegate method of tableview. if so, use autorelease instead.
source
share