Filter a cell in tableview before it is loading.
How can we filter the cell before its loading.....for example
i have an object named as statdata the object contains seven porperties ...the seven properties are ....
int nPull;
int nLong;
int nPush;
int nTarget;
int nHook;
int nShort;
int nCut;
int count;
i am displaying the seven items in my cell ...
i have to filter the cell if the property value is less than or equal to zero(if nTarget is equal to zero then the cell should not be displayed)...before the tableview loads the data into the cell.....
how can i do this....could anyone help me to do this....?..please help me....
|