uitableview多行选择

 1 interface ViewController () <UITableViewDataSource, UITableViewDelegate>
 2 
 3 @property (weak, nonatomic) IBOutlet UITableView *tableView;
 4 
 5 @end
 6 
 7 @implementation ViewController
 8 
 9  
10 
11 - (void)viewDidLoad
12 
13 {
14 
15     [super viewDidLoad];
16 
17     self.tableView.allowsMultipleSelection = YES;//uitableview多行选择
18 }
19 
20  @end 

posted on 2014-07-24 22:23  林源  阅读(127)  评论(0编辑  收藏  举报

导航