My problem is similar as this:
But I want to show accessoryView with DetailDisclosureButton only for cells that have details.
I have written some codes, but I don´t know in which method to put it.
if (totalcount == 0 && totalcount2 == 0)
{
cell.accessoryType = UITableViewCellAccessoryNone;
}
else
{
cell.accessoryType = UITableViewCellAccessoryDetailDisclosureButton;
}
totalcount and totalcount2 is count of two mutable arrays that tell me whether cells have details or not.
Please ask me if my question is not clear, thank you.
Though to me, it seems that if totalCount and totalCount2 both equal 0, then all of the cells are going to have the same accessory type. Is that what you what? If not, you might want to rethink your logic.