うまくいけば、これは簡単な修正になるでしょう。私は私が得続けるエラーを理解しようとしています。エラーは以下にリストされており、appdelagateはその下にあります。
どんな助けでもありがたいです。
ありがとう
2012-04-12 21:11:52.669 Chanda [75100:f803] ---のアサーションエラー
-[UITableView _endCellAnimationsWithContext:]
、/SourceCache/UIKit_Sim/UIKit-1914.84/UITableView.m:1037
2012-04-12 21:11:52.671 Chanda [75100:f803] ---キャッチされない例外 'NSInternalInconsistencyException
' によりアプリを終了しています、理由: '無効な更新:セクション0の無効な行数。更新後の既存のセクションに含まれる行数(2)は、更新前にそのセクションに含まれる行数(2)に加えて、さらにまたはそのセクションに挿入または削除された行の数(1挿入、0削除)およびそのセクションに移動またはそこから移動された行の数(0は内側に移動、0は外側に移動)。
#import "AppDelegate.h"
@implementation AppDelegate
@synthesize window = _window;
@synthesize databaseName,databasePath;
- (BOOL)application: (UIApplication *)application didFinishLaunchingWithOptions: (NSDictionary *)launchOptions {
self.databaseName = @"Customers.db";
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentDir = [documentPaths objectAtIndex:0];
self.databasePath = [documentDir stringByAppendingPathComponent:self.databaseName];
[self createAndCheckDatabase];
return YES;
}
- (void)createAndCheckDatabase {
BOOL success;
NSFileManager *fileManager = [NSFileManager defaultManager];
success = [fileManager fileExistsAtPath:databasePath];
if (success) return;
NSString *databasePathFromApp = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:self.databaseName];
[fileManager copyItemAtPath:databasePathFromApp toPath:databasePath error:nil];
}
@end