ローカル データベースにデータがある場合、アプリケーションを開始する前に最初にサーバーにアップロードするアプリがあります。アプリ Deleage にアップロード コードを記述しました。アップロード中に、アクティビティ インジケーターをアラートで表示する方法が必要です。通常は startAnimating と Stop を表示するのは簡単ですが、このシナリオではどうすればよいでしょうか?
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
[self copyDatabaseIfNeeded];
NSMutableArray *tempArray = [[NSMutableArray alloc] init];
self.coffeeArray = tempArray;
[tempArray release];
[Coffee checkData:[self getDBPath]];
int mytestcount=rowCount;
NSLog(@"My Test ROw Count IS %d",mytestcount);
if (mytestcount=0) {
NSLog("No Data To Upload");
}
else {
[Coffee getInitialDataToDisplay:[self getDBPath]];
[self uploadData];
}
[self.window addSubview:[navigationController view]];
[self.window makeKeyAndVisible];
return YES;
}