¡@

Home 

2014/10/15 ¤U¤È 10:03:58

iphone Programming Glossary: arraycheckunchek

Check Uncheck buttons in uitableview's cell

http://stackoverflow.com/questions/12814060/check-uncheck-buttons-in-uitableviews-cell

ViewController UIViewController UITableViewDelegate UITableViewDataSource IBOutlet UITableView tblView NSMutableArray arrayCheckUnchek Will handle which button is selected or which is unselected NSMutableArray cellDataArray this is your data array @end Now.. class void viewDidLoad super viewDidLoad Do any additional setup after loading the view typically from a nib. arrayCheckUnchek NSMutableArray alloc init Assign your cell data array cellDataArray NSMutableArray alloc initWithObjects @ cell 1 @ cell.. @ cell 1 @ cell 2 @ cell 3 @ cell 4 @ cell 5 nil setting all unchecks initially for int i 0 i cellDataArray count i arrayCheckUnchek addObject @ Uncheck NSInteger tableView UITableView tableView numberOfRowsInSection NSInteger section return cellDataArray..