6

私はPFQueryTableView画像とテキストを使って作業してきました。このコードを実装した後:

-  (id)initWithCoder:(NSCoder *)aDecoder {
     self = [super initWithClassName:@"Story"];
     self = [super initWithCoder:aDecoder];
   if (self) { // This table displays items in the Todo class
       self.parseClassName = @"Story";
       self.pullToRefreshEnabled = YES;
       self.paginationEnabled = YES;
       self.objectsPerPage = 25;
   }
  return self;
 }

- (PFQuery *)queryForTable {
PFQuery *query = [PFQuery queryWithClassName:self.parseClassName];

if (self.objects.count == 0) {
    query.cachePolicy = kPFCachePolicyCacheThenNetwork;
}
[query orderByDescending:@"createdAt"];


return query;
 }


 - (UITableViewCell *)tableView:(UITableView *)tableView
     cellForRowAtIndexPath:(NSIndexPath *)indexPath
                    object:(PFObject *)object {
static NSString *cellIdentifier = @"cell";

PFTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
if (!cell) {
    cell = [[PFTableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle
                                  reuseIdentifier:cellIdentifier];
}

// Configure the cell to show todo item with a priority at the bottom
cell.textLabel.text = object[@"snapDetails"];

PFFile *thumbnail = [object objectForKey:@"snap"];
cell.imageView.image = [UIImage imageNamed:@"placeholder.jpg"];
cell.imageView.file = thumbnail;
return cell;
}

ログには、次の奇妙な警告が表示されます。

[/BuildRoot/Library/Caches/com.apple.xbs/Sources/CoreUI/CoreUI-371.4/Bom/Storage/BOMStorage.c:522
] は BOMStorage ファイルではありません

通常のメモリ警告とともに。時折、アプリもクラッシュし、XCodeへの接続が失われたことを示すメッセージが表示されますiPhone。メモリ使用量を確認すると、テーブルが上下するにつれて、画像 (画面サイズ) が画面から外れても解放されないかのように、メモリが増加し続けます。何が起こっているのかについてのアイデアはありますか?

4

1 に答える 1