私は、私がuitableの中でこれを保存したいが、それが表示されていない、私のコードは配列に異なるオブジェクトの別の配列が格納されているときにNSMutableArrayをテーブルに保存する方法はありますか?
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
// Return the number of rows in the section.
return [myArrayNew count];
}
// Customize the appearance of table view cells.
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
// Configure the cell...
NSString *cellValue = [myArrayNew objectAtIndex:indexPath.row];
cell.textLabel.text = cellValue;
return cell;
}
配列をされてきたし、この配列は、あなたが次に、
どのようのUITableViewの配列値の配列を表示したいですか? – KingofBliss
すべての3つの要素を1つの行に入れて、私はこのようにしたい –
テーブルのデータソースとデリゲートを設定していることを確認してください。ロビンの指示に従ってください。ありがとう、 – GameLoading