データを自動更新するiPhoneアプリを作っています。ちなみに、課金はしません。データのサイズがある程度大きいので、HTTPではなくFTPを使うことにしました。FTPダウンロードの開始は、こんなカンジで書くことになると思います。 NSString *docDir = [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]; NSString *filePath = [NSString stringWithFormat:@"%@/buzz.zip", docDir]; NSOutputStream *fileStream = [NSOutputStream outputStreamToFileAtPath:self.filePath append:NO]; [fileStream open]; // URLに注意! NS