1

この形式「name1、link1、name2、link2 ...」の文字列から始まるテーブルビューを取得しようとしています。実際にやっていることは次のとおりです。

-文字列を取得し、リンクと名前を配列に入れ、オブジェクトの位置によって配列を 2 つの小さいものに分割します

- (void)viewDidLoad
{
NSString *dataString = @"a,www.google.it,b,www.apple.it,c,www.youtube.it";
dataArray = [dataString componentsSeparatedByString:@","];
for (int i=0; i<[dataArray count]; i++) {
    if (i%2==0) {
        [dataArrayName addObject:[dataArray objectAtIndex:i]];
    }
    else {
        [dataArrayLink addObject:[dataArray objectAtIndex:i]];
    }
}
[super viewDidLoad];
}

-テーブル ビューを設定します

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section;

{
return [dataArrayName count];
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {

static NSString *MyIdentifier = @"myCell";

// Try to retrieve from the table view a now-unused cell with the given identifier.
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:MyIdentifier];

// If no cell is available, create a new one using the given identifier.
if (cell == nil) {
    // Use the default cell style.
    cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"myCell"];
}

// Set up the cell.
NSString *cellName = [dataArrayName objectAtIndex:indexPath.row];
cell.textLabel.text = cellName;

return cell;
}

しかし、アプリケーションを実行すると、テーブルビューのビューがクリアされます (空の行があります) 問題は何ですか?

4

1 に答える 1

0

dataArrayName と dataArrayLink を初期化しましたか (つまり、ある時点で、それにオブジェクトを追加し始める前に、dataArrayName = [[NSMutableArray alloc] init]または同等のことを言いましたか?

于 2012-12-08T11:36:41.730 に答える