如何在iphone sdk中将数组值从一个viewcontroller打印到另一个视图控制器数组

时间:2011-06-15 11:40:30

标签: iphone

我想将数组对象从一个视图控制器显示到另一个视图控制器的数组。 在第一个视图控制器中,我已经解析了xml根据我在该视图中有12行控制器意味着我有4个记录,其中3个不同的值用于参考plz参见图像

in this image there are 12 rows according to 4 records now i m selecting the values from drop down list for any one team and it will set next value automatically to the other team so i pick these value in 2 diff array so count of these two array is 4 now i want to print these two array value on label in second view controller according to 2nd image i want the out put plz see this

Here u can see the values in percentage opposite of team name i want same out put 但现在的问题是我在数组中有4个对象,我在第二个视图中有12行,所以如何显示输出

2 个答案:

答案 0 :(得分:0)

您应该使用numberOfRowsInSection返回正确的行数。假设您的数组名为listOfTeams,那么该方法应使用:return [listOfTeams count];

如果这不是一个选项,请在数组中添加这4个对象,并添加另外8个nil

for (int i = 0; i < 8; i++)
{
    [listOfTeams addObject:nil];
}

不推荐这样做,而是修改你的表格方法。

答案 1 :(得分:0)

根据对象数量增加单元格数。