这是我的第一个问题,如果有问题请见谅
好吧,我正在尝试创建一个视图,在该视图中我可以从表格视图中选择一个朋友,然后它应该在 UIAlertView 上显示数字和邮件,但我不知道如何做到这一点,朋友列表是从 xml 文件中获取的在我的网站上,然后解析并显示在具有自定义单元格设计的表格上
这是创建每个单元格的代码
- (UITableViewCell *)tableView:(UITableView *)myTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = (UITableViewCell *)[self.messageList dequeueReusableCellWithIdentifier:@"ContactListItem"];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ContactListItem" owner:self options:nil];
cell = (UITableViewCell *)[nib objectAtIndex:0];
}
NSDictionary *itemAtIndex = (NSDictionary *)[messages objectAtIndex:indexPath.row];
UILabel *userLabel = (UILabel *)[cell viewWithTag:2];
userLabel.text = [itemAtIndex objectForKey:@"user"];
return cell;
}
谢谢圣地亚哥