Parse をバックエンドとして使用して写真共有アプリを作成するためのオンライン チュートリアルに従っています。チュートリアルを 2 回実行し、両方とも最初からアプリを作成しましたが、同じ場所で同じエラーが発生します。私は解決策を探しましたが、まだ運がありません。
PFQueryTableViewController を使用していますが、コンテンツが行ではなく複数のセクションに読み込まれています。各セクションでは、セクション ヘッダーに PFUser の詳細が表示されます。各セクションには、そのユーザーがロードしたイメージを表示する行が 1 つだけあります。各ページの最後に (ページネーションを有効にして、一度に 3 つのオブジェクトをロードしています)、クリックすると次の 3 つのオブジェクトをテーブル ビューにロードするための [さらにロード] ボタンがあります。ただし、このボタンをクリックすると、アプリがクラッシュし、次のエラーが表示されます。
-[UITableView _endCellAnimationsWithContext:]、/SourceCache/UIKit_Sim/UIKit-2935.137/UITableView.m:1114 2014-07-28 01:50:37.368 SampleCamApp[25686:60b] でのアサーションの失敗 キャッチされない例外 'NSInternalInconsistencyException' によるアプリの終了理由: 「更新前に 1 行のみを含むセクション 0 から行 3 を削除しようとしています」
これが私のコードです:
#import "HomeViewController.h"
@interface HomeViewController ()
@end
@implementation HomeViewController
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
if (self) {
// Custom initialization
}
return self;
}
- (id)initWithCoder:(NSCoder *)aDecoder
{
self = [super initWithCoder:aDecoder];
if (self) {
// This table displays items in the Todo class
self.parseClassName = @"Photo";
self.pullToRefreshEnabled = YES;
self.paginationEnabled = YES;
self.objectsPerPage = 3;
}
return self;
}
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
}
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
[self loadObjects];
}
- (void)didReceiveMemoryWarning
{
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
#pragma mark - PFQueryTableViewDataSource and Delegates
- (void)objectsDidLoad:(NSError *)error
{
[super objectsDidLoad:error];
}
// return objects in a different indexpath order. in this case we return object based on the section, not row, the default is row
- (PFObject *)objectAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section < self.objects.count)
{
return [self.objects objectAtIndex:indexPath.section];
}
else
{
return nil;
}
}
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section
{
if(section == self.objects.count)
{
return nil;
}
static NSString *CellIdentifier = @"SectionHeaderCell";
UITableViewCell *sectionHeaderView = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
PFImageView *profileImageView = (PFImageView *)[sectionHeaderView viewWithTag:1];
UILabel *userNameLabel = (UILabel *)[sectionHeaderView viewWithTag:2];
UILabel *titleLabel = (UILabel *)[sectionHeaderView viewWithTag:3];
PFObject *photo = [self.objects objectAtIndex:section];
PFUser *user = [photo objectForKey:@"whoTook"];
PFFile *profilePicture = [user objectForKey:@"profilePicture"];
NSString *title = photo[@"title"];
userNameLabel.text = user.username;
titleLabel.text = title;
profileImageView.file = profilePicture;
[profileImageView loadInBackground];
return sectionHeaderView;
}
- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
NSInteger sections = self.objects.count;
if(self.paginationEnabled && sections >0)
{
sections++;
}
return sections;
}
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath object:(PFObject *)object
{
if(indexPath.section == self.objects.count)
{
UITableViewCell *cell = [self tableView:tableView cellForNextPageAtIndexPath:indexPath];
return cell;
}
static NSString *CellIdentifier = @"PhotoCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
PFImageView *photo = (PFImageView *)[cell viewWithTag:1];
photo.file = object[@"image"];
[photo loadInBackground];
return cell;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section
{
if(section == self.objects.count)
{
return 0.0f;
}
return 50.0f;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section == self.objects.count)
{
return 50.0f;
}
return 320.0f;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForNextPageAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"LoadMoreCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
return cell;
}
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
if(indexPath.section == self.objects.count && self.paginationEnabled)
{
[self loadNextPage];
}
}
- (PFQuery *)queryForTable
{
PFQuery *query = [PFQuery queryWithClassName:self.parseClassName];
[query includeKey:@"whoTook"];
[query orderByDescending:@"createdAt"];
return query;
}
/*
#pragma mark - Navigation
// In a storyboard-based application, you will often want to do a little preparation before navigation
- (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender
{
// Get the new view controller using [segue destinationViewController].
// Pass the selected object to the new view controller.
}
*/
@end
アプリを実行すると、画像、テキストなどを含むすべてのコンテンツが正しく読み込まれます...問題が発生するのはボタンをクリックしたときだけです。この時点で、私は iOS 開発にかなり慣れていますが、Parse にはかなり慣れていないため、PFQueryTableViewController を使用するのはこれが初めてです。何か間違って実装している場合はお知らせください。それ以外の場合は、通常の UITableViewController を回避してこれを実現する必要があります。