我是编程初学者。
我有tableview控制器和两个NSMutableArrays来填充表视图。 数组中的数据是FBProfil图像和用户名。 在表格单元格上,我有一个FBProfilImageView和一个用户名标签。
我使用方法的节数,节中的行的nambuer和索引路径的行的单元格。
当我编译并运行app时,会填充表视图,但是当我向上或向下滚动表视图时,滚动停止时会刷新显示的图像,因此在滚动时,图像来自其他用户。
我无法在网上找到这个问题的答案。
我尝试仅使用名称填充表视图,但是当第一个单元格(0)标签为空时(仅用于测试)。当我向下滚动时,第一个单元格标签填充了第二个值(1)。
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
return appDelegate.FRIENDS.count;
NSLog(@"Broj Stupaca %lu", (unsigned long)appDelegate.FRIENDS.count);
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
AppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
FriendsCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.FriendName.text = [appDelegate.FRIENDS objectAtIndex:indexPath.row];
if (![[appDelegate.FRIENDS_BIRTHDAY objectAtIndex:indexPath.row] isEqualToString:@""])
{
cell.FriendBirthDay.text = [NSString stringWithFormat:@"%@", [appDelegate.FRIENDS_BIRTHDAY objectAtIndex:indexPath.row]];
}
else
{
cell.FriendBirthDay.text = @"Nema podataka";
}
cell.FriendPicture.profileID = [appDelegate.FRIENDS_IMAGE objectAtIndex:indexPath.row];
return cell;
}
抱歉我的英语不好。
来自克罗地亚的问候。