- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我知道对于任何精通 Objective-C 的人来说,这可能是一个简单的答案,但我是使用 Objective-C 的新手,过去几天我一直被这个问题困扰。我已经阅读了很多关于重复单元格的 stackoverflow 线程,并尝试复制和粘贴了很多答案,但似乎没有一个对我有用。
我正在尝试将从适用于 iOS 的 Facebook SDK 获取的数据放入 UITableView。我已经设法从 Facebook GraphAPI 获取数据并进入 UITableView,但我无法解决的问题是应用程序从 Facebook 获取的最后一条记录中的数据在所有单元格中不断重复。除此之外,当我向上或向下滚动时,填充单元格需要几秒钟,即使它已经知道数据。
我已经尝试了很多方法来让它工作,但解决这个问题超出了技能水平。在这一点上,我将尽一切努力让它正常工作并显示我从 Facebook 获得的结果而不会导致当前问题,因此非常感谢任何帮助。
我的 NSLogs 显示两条记录,但我的 UITableView 只会显示一条。这是我的日志示例。
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: John Smith
High Score: 5666
Facebook ID: 654321
Image: <UIImage: 0xde12345>
IndexPath Row: 1
*************************************
2013-12-26 11:51:48.380 [7820:70b] CREATING NEW CELL
2013-12-26 11:51:48.380 [7820:70b] indexPath.row: 1
2013-12-26 11:51:48.468 [7820:70b]
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: Figurative Art
High Score: 2762
Facebook ID: 123456
Image: <UIImage: 0x1101234>
IndexPath Row: 1
*************************************
2013-12-26 11:51:48.468 [7820:70b] CREATING NEW CELL
2013-12-26 11:51:48.469 [7820:70b] indexPath.row: 1
2013-12-26 11:51:48.553 [7820:70b]
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: John Smith
High Score: 5666
Facebook ID: 654321
Image: <UIImage: 0xde12345>
IndexPath Row: 0
*************************************
2013-12-26 11:51:48.553 [7820:70b] CREATING NEW CELL
2013-12-26 11:51:48.553 [7820:70b] indexPath.row: 0
2013-12-26 11:51:48.637 [7820:70b]
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: Figurative Art
High Score: 2762
Facebook ID: 123456
Image: <UIImage: 0x1101234>
IndexPath Row: 0
*************************************
2013-12-26 11:51:48.637 [7820:70b] CREATING NEW CELL
2013-12-26 11:51:48.637 [7820:70b] indexPath.row: 0
2013-12-26 11:51:48.720 [7820:70b]
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: John Smith
High Score: 5666
Facebook ID: 654321
Image: <UIImage: 0xde12345>
IndexPath Row: 2
*************************************
2013-12-26 11:51:48.720 [7820:70b] CREATING NEW CELL
2013-12-26 11:51:48.720 [7820:70b] indexPath.row: 2
2013-12-26 11:51:49.290 [7820:70b]
The follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m
Full Name: Figurative Art
High Score: 2762
Facebook ID: 123456
Image: <UIImage: 0x1101234>
IndexPath Row: 2
*************************************
这是我的 LeadeboardViewController.m 中的代码
#import "FBLeaderBoardTableViewController.h"
#import "FBLeaderBoardCell.h"
#import "ViewController.h"
@interface FBLeaderBoardTableViewController ()
@end
@implementation FBLeaderBoardTableViewController
@synthesize facebookID, facebookFullName, facebookFirstName, facebookHighScore, facebookProfilePicture, tableView, closeFacebookLeaderboard;
@synthesize FBArray;
@synthesize FBMutableArray;
- (id)initWithStyle:(UITableViewStyle)style
{
self = [super initWithStyle:style];
if (self) {
// Custom initialization
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
[self.tableView registerNib:[UINib nibWithNibName:@"FBLeaderBoardCell" bundle:nil ] forCellReuseIdentifier:@"FBLeaderBoardCellID"];
}
- (void)viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
}
- (IBAction)closeFacebookLeaderboard:(id)sender {
[self dismissViewControllerAnimated:TRUE completion:nil];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
{
// [self.tableView reloadData];
}
#pragma mark - Table view data source
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
#warning Potentially incomplete method implementation.
// Return the number of sections.
return 1;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
#warning Incomplete method implementation.
// Return the number of rows in the section.
return 10;
//RESULTS THAT DIDN'T WORK
//return [displayData count];
//return [self.data count];
//return [FBLeaderBoardData count];
//return [facebookHighScore count];
//return [data count];
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"fbcell";
FBLeaderBoardCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil)
{
cell = [[[FBLeaderBoardCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier]autorelease];
{
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"FBLeaderBoardCell" owner:nil options:nil];
for (id currentObject in topLevelObjects){
if([currentObject isKindOfClass:[FBLeaderBoardCell class]]){
cell = (FBLeaderBoardCell *)currentObject;
}
}
} [FBRequestConnection startWithGraphPath:[NSString stringWithFormat:@"xxxx/scores?fields=score,user"] parameters:nil HTTPMethod:@"GET" completionHandler:^(FBRequestConnection *connection, id result, NSError *error) {
if (result && !error)
{
// int index = 0;
for (NSDictionary *dict in [result objectForKey:@"data"])
{
NSString *name = [[dict objectForKey:@"user"] objectForKey:@"name"];
NSString *highScore = [dict objectForKey:@"score"];
NSString *FBID = [[dict objectForKey:@"user"] objectForKey:@"id"];
NSString *imageURL = [[NSString alloc] initWithFormat:@"https://graph.facebook.com/%@/picture",FBID];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageURL]]];
[imageURL release];
self.facebookFullName = name;
self.facebookHighScore = highScore;
self.facebookProfilePicture = image;
NSLog(@"\n\nThe follow data is from the UITableViewCell method in FBLeaderBoardTableViewController.m\nFull Name: %@ \nHigh Score: %@ \nFacebook ID: %@ \nImage: %@\nIndexPath Row: %ld\n\n*************************************\n\n", facebookFullName, facebookHighScore, FBID, facebookProfilePicture, (long)indexPath.row);
// NSLog(@"FBGraph Index Row: %d", indexPath.row);
NSLog(@"CREATING NEW CELL");
NSLog(@"indexPath.row: %d", indexPath.row);
cell.FBPlayerPhoto.image = facebookProfilePicture;
cell.FBPlayerName.text = facebookFullName;
cell.FBPlayerScore.text = [NSString stringWithFormat:@"$%@ Gold Coins",facebookHighScore];
}
}
}];
// [tableView reloadData];
}
return cell;
}
// Removes iOS 7 Staus bar from this view.
- (BOOL)prefersStatusBarHidden{
return YES;
}
@end
这是我的 LeadeboardViewController.h 中的代码
#import <UIKit/UIKit.h>
#import "FBLeaderBoardCell.h"
#import <FacebookSDK/FacebookSDK.h>
@interface FBLeaderBoardTableViewController : UIViewController <UITableViewDelegate, UITableViewDataSource>
{
NSMutableArray *FBLeaderBoardData;
IBOutlet UILabel *showScore;
__block NSMutableArray* _itemsNamesFriend;
__block NSArray* data;
__block NSMutableArray* displayData;
// IBOutlet FBProfilePictureView *facebookProfilePicture;
IBOutlet UITableView *tableView;
IBOutlet UIButton *closeFacebookLeaderboard;
}
@property (strong, nonatomic) NSArray *data;
@property (strong) NSString *facebookID;
@property (strong) NSString *facebookFullName;
@property (strong) NSString *facebookFirstName;
@property (strong) NSString *facebookHighScore;
@property (strong) UIImage *facebookProfilePicture;
//@property (strong) IBOutlet FBProfilePictureView *facebookProfilePicture;
@property (strong) IBOutlet UITableView *tableView;
@property (strong) IBOutlet UIButton *closeFacebookLeaderboard;
@property (strong, nonatomic) NSArray *FBArray;
@property (strong, nonatomic) NSMutableArray *FBMutableArray;
@end
我知道我目前在我的 - (UITableViewCell *) 中使用 FBRequest 的方式可能不是调用数据的最佳方式,但是当我尝试将其放入 viewDidLoad 方法时,我在 - (UITableViewCell *) 中得到 NULL *).弄清楚如何将它作为 NSArray 或 NSMutableArray 一直给我带来问题,所以我只是将所有内容放入 - (UITableViewCell *)。
最佳答案
您的代码如此重复的原因是因为您的 cellForRowAtIndexPath 方法中有这个 for 循环:
for (NSDictionary *dict in [result objectForKey:@"data"]) {
NSString *name = [[dict objectForKey:@"user"] objectForKey:@"name"];
NSString *highScore = [dict objectForKey:@"score"];
NSString *FBID = [[dict objectForKey:@"user"] objectForKey:@"id"];
NSString *imageURL = [[NSString alloc] initWithFormat:@"https://graph.facebook.com/%@/picture",FBID];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageURL]]];
[imageURL release];
self.facebookFullName = name;
self.facebookHighScore = highScore;
self.facebookProfilePicture = image;
cell.FBPlayerPhoto.image = facebookProfilePicture;
cell.FBPlayerName.text = facebookFullName;
cell.FBPlayerScore.text = [NSString stringWithFormat:@"$%@ Gold Coins",facebookHighScore];
}
您在加载每一行的同时浏览字典,因此您最终要使用最终迭代期间生成的结果来设置您的单元格。
所以用与当前特定行相关的单个字典值替换循环。例如,您可以设置 dict = [[result objectForKey:@"data"] objectAtIndex:indexPath.row]
并删除 for 循环,如下所示:
NSDictionary *dict = [[result objectForKey:@"data"] objectAtIndex:indexPath.row];
NSString *name = [[dict objectForKey:@"user"] objectForKey:@"name"];
NSString *highScore = [dict objectForKey:@"score"];
NSString *FBID = [[dict objectForKey:@"user"] objectForKey:@"id"];
NSString *imageURL = [[NSString alloc] initWithFormat:@"https://graph.facebook.com/%@/picture",FBID];
UIImage *image = [UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:imageURL]]];
[imageURL release];
self.facebookFullName = name;
self.facebookHighScore = highScore;
self.facebookProfilePicture = image;
cell.FBPlayerPhoto.image = facebookProfilePicture;
cell.FBPlayerName.text = facebookFullName;
cell.FBPlayerScore.text = [NSString stringWithFormat:@"$%@ Gold Coins",facebookHighScore];
编辑:还有一些其他的事情,我们正在做……
(1) 你在这里犯了类似的错误:
NSArray *topLevelObjects = [[NSBundle mainBundle] loadNibNamed:@"FBLeaderBoardCell" owner:nil options:nil];
for (id currentObject in topLevelObjects){
if([currentObject isKindOfClass:[FBLeaderBoardCell class]]){
cell = (FBLeaderBoardCell *)currentObject;
}
}
通过在循环的每次迭代期间重新填充单元格对象。那是不必要的。按照此处提到的方法使用 xib 正确加载自定义单元格:https://stackoverflow.com/a/1939305/2274694
(2) 您实际上可能想在代码中使用不同的方法获取图形路径结果,原因有两个:#1 让您的应用程序在加载每一行时调用 Facebook 图形路径没有意义。更重要的是,在您的情况下,#2 为了在 numberOfRowsInSection:
期间动态找出行数,您无论如何都需要预取结果。
所以我建议在每次加载表之前获取图形路径结果,在 block 中插入一个[tableView reloadData]
语句,将结果保存为类变量,并设置行数结果。计数。
关于ios - 如何让我的 Facebook GraphAPI 数据在 UITableView 中不重复?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20790989/
我需要将文本放在 中在一个 Div 中,在另一个 Div 中,在另一个 Div 中。所以这是它的样子: #document Change PIN
奇怪的事情发生了。 我有一个基本的 html 代码。 html,头部, body 。(因为我收到了一些反对票,这里是完整的代码) 这是我的CSS: html { backgroun
我正在尝试将 Assets 中的一组图像加载到 UICollectionview 中存在的 ImageView 中,但每当我运行应用程序时它都会显示错误。而且也没有显示图像。 我在ViewDidLoa
我需要根据带参数的 perl 脚本的输出更改一些环境变量。在 tcsh 中,我可以使用别名命令来评估 perl 脚本的输出。 tcsh: alias setsdk 'eval `/localhome/
我使用 Windows 身份验证创建了一个新的 Blazor(服务器端)应用程序,并使用 IIS Express 运行它。它将显示一条消息“Hello Domain\User!”来自右上方的以下 Ra
这是我的方法 void login(Event event);我想知道 Kotlin 中应该如何 最佳答案 在 Kotlin 中通配符运算符是 * 。它指示编译器它是未知的,但一旦知道,就不会有其他类
看下面的代码 for story in book if story.title.length < 140 - var story
我正在尝试用 C 语言学习字符串处理。我写了一个程序,它存储了一些音乐轨道,并帮助用户检查他/她想到的歌曲是否存在于存储的轨道中。这是通过要求用户输入一串字符来完成的。然后程序使用 strstr()
我正在学习 sscanf 并遇到如下格式字符串: sscanf("%[^:]:%[^*=]%*[*=]%n",a,b,&c); 我理解 %[^:] 部分意味着扫描直到遇到 ':' 并将其分配给 a。:
def char_check(x,y): if (str(x) in y or x.find(y) > -1) or (str(y) in x or y.find(x) > -1):
我有一种情况,我想将文本文件中的现有行包含到一个新 block 中。 line 1 line 2 line in block line 3 line 4 应该变成 line 1 line 2 line
我有一个新项目,我正在尝试设置 Django 调试工具栏。首先,我尝试了快速设置,它只涉及将 'debug_toolbar' 添加到我的已安装应用程序列表中。有了这个,当我转到我的根 URL 时,调试
在 Matlab 中,如果我有一个函数 f,例如签名是 f(a,b,c),我可以创建一个只有一个变量 b 的函数,它将使用固定的 a=a1 和 c=c1 调用 f: g = @(b) f(a1, b,
我不明白为什么 ForEach 中的元素之间有多余的垂直间距在 VStack 里面在 ScrollView 里面使用 GeometryReader 时渲染自定义水平分隔线。 Scrol
我想知道,是否有关于何时使用 session 和 cookie 的指南或最佳实践? 什么应该和什么不应该存储在其中?谢谢! 最佳答案 这些文档很好地了解了 session cookie 的安全问题以及
我在 scipy/numpy 中有一个 Nx3 矩阵,我想用它制作一个 3 维条形图,其中 X 轴和 Y 轴由矩阵的第一列和第二列的值、高度确定每个条形的 是矩阵中的第三列,条形的数量由 N 确定。
假设我用两种不同的方式初始化信号量 sem_init(&randomsem,0,1) sem_init(&randomsem,0,0) 现在, sem_wait(&randomsem) 在这两种情况下
我怀疑该值如何存储在“WORD”中,因为 PStr 包含实际输出。? 既然Pstr中存储的是小写到大写的字母,那么在printf中如何将其给出为“WORD”。有人可以吗?解释一下? #include
我有一个 3x3 数组: var my_array = [[0,1,2], [3,4,5], [6,7,8]]; 并想获得它的第一个 2
我意识到您可以使用如下方式轻松检查焦点: var hasFocus = true; $(window).blur(function(){ hasFocus = false; }); $(win
我是一名优秀的程序员,十分优秀!