I have UITableView and it add data from NSMutableArray.
So, I want to know how to add NSMutableArray into Object?
and I will add Object into UITableView.
Because I want use [tableData removeAllObjects];
But now I can only use [UITableView removeFromSuperview];
Thank you for your hand.
Kind Regard.
Use
addObjectto add an object in yourNSMutableArray.Use the method as below.
Once you done with updating your array, call
reloadDataonUITableViewinstance.