how to use UISegmentedControl to change datasource in tableview? with sql tables or read data from arrays thanks

link|improve this question

75% accept rate
feedback

1 Answer

up vote 3 down vote accepted
  1. Use -addTarget:action:forControlEvents: (with events UIControlEventValueChanged) to set up a response action for the segmented control.
  2. In the action, check the sender's selectedSegmentIndex property. Use this to determine which data source to use.
  3. Change the table view's dataSource property.
link|improve this answer
@user: What textLabel? You did not mention textLabel in the question. – KennyTM Apr 4 '10 at 16:25
opps sorry sorry again – user301212 Apr 4 '10 at 16:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.