this question might be easy but i’m not sure how to do it.
i will like to show a tableview based on users criteria.
user have a checklist, when checked certain or multiple item, the array will check and inform user there is 3 item matching this criteria.
if user tapped on the button, it will push and show the 3 item in UItableview.
tutorial or sample code are appreciated..
thanks for reading
Load an
NSMutableArraywith the desired items based on the checklist, but adding items when the user checks something or removing objects when the user unchecks something. Callarray.countto get the total number of items. Then pass this array to theUITableViewas its data source.