1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| self.array = [NSMutableArray arrayWithObjects:@"普通话",@"英语",@"法语",@"俄语",@"日语",@"韩语",@"德语",@"西班牙语",@"泰语",@"小语种",nil];
self.saveArray = [NSMutableArray array];
self.tmptabelView = [[UITableView alloc]initWithFrame:CGRectMake(0, 0, 300, 400)]; [self.tmptabelView setBackgroundColor:[UIColor whiteColor]]; [self.tmptabelView setDelegate:self]; [self.tmptabelView setDataSource:self]; self.tmptabelView.editing = YES; self.tmptabelView.allowsMultipleSelectionDuringEditing = YES; [self.view addSubview:self.tmptabelView];
|