我有一个名为bookmark的数组,它包含值,我在tableview单元格中显示它,我知道如何在tablecell中显示它。但我希望相同的数组在textview中显示它。这是我的tableview代码。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView {
return 1;
}
//自定义表格视图中的行数。
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
return [bookmarks 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];
UIImageView* img = [[UIImageView alloc]initWithImage:[UIImage imageNamed:@"bgCELL3@2X-1"]];
[cell setBackgroundView:img];
[img release];
}
cell.textLabel.font =[UIFont fontWithName:@"Georgia" size:15];
cell.selectionStyle = UITableViewCellSelectionStyleGray;
cell.textLabel.text = [NSString stringWithFormat:@"%@ %@:%@ ",[[bookmarks objectAtIndex:indexPath.row] objectForKey:@"book"],[[bookmarks objectAtIndex:indexPath.row] objectForKey:@"chapter"],[[bookmarks objectAtIndex:indexPath.row] objectForKey:@"verse"],[[bookmarks objectAtIndex:indexPath.row] objectForKey:@"text"]];
// Set up the cell...
return cell;
}
我想用mytextview.text =?替换cell.textlabel.text。请帮我这样做。 提前谢谢。
答案 0 :(得分:2)
您可以采用与UITextView
UILabel
的文字
mytextview.text = [[bookmarks objectAtIndex:0] objectForKey:@"text"];
或者,例如,循环:
NSString *resultStr = @"";
for (id bookmark in bookmarks)
{
resultStr = [NSString stringWithFormat:@"%@. %@", resultStr, [bookmark objectForKey:@"text"]]];
}
mytextview.text = resultStr;