好吧,我在墙上。我正在尝试从表视图中复制 SELECTED ROW 并将内容添加到 ARRAY。
我试过这个,但无济于事:
[self.templist addObject:[self.songsList objectAtIndex:indexPath.row]];
任何想法将不胜感激。上面,我尝试将该行添加到一个名为 templist 的数组中。但是,没有运气。
谢谢,
好吧,我在墙上。我正在尝试从表视图中复制 SELECTED ROW 并将内容添加到 ARRAY。
我试过这个,但无济于事:
[self.templist addObject:[self.songsList objectAtIndex:indexPath.row]];
任何想法将不胜感激。上面,我尝试将该行添加到一个名为 templist 的数组中。但是,没有运气。
谢谢,
你到底想复制什么..?你的意思是tableViewCell
...
如果它是一个tableViewCell
那么它是一个简单的任务..
您可以使用以下行:
[NSIndexPath *index= [NSIndexPath indexPathForRow:3 inSection:0]; // Suppose cell no 3 in section 0
UITableViewCell *myCell = [tableName cellForRowAtIndexPath:index];
[yourArray addObject:myCell];
希望这会帮助你。
NSMutableArray * templist=[[NSMutableArray alloc]init];
NSLog(@"%@",templist);
[templist addObject:[self.songlist objectAtIndex:indexPath.row]];
NSLog(@"%@",templist);
尝试使用 NsMutable 数组...