I am displaying files in a tableview. In cellForRowAtIndexPath, I want to display only certain types of files.
I am doing something like this:
if (document is folder) {
display folder details;
}
else (document is not folder) {
display empty cell;
}
by doing this i can display empty cells but those are still there(hidden) how to get rid of those rows. see the pic for details.
