0

ユーザーがボタンをクリックして着信音をドキュメントディレクトリに保存できるアプリがあります。iPad 版は正常に動作していますが、iPhone で同じ方法を使用してもうまくいかないようです。保存に使用しているコードは次のとおりです。

- (IBAction) saveFile:(id)sender {
    // Get the path to the Documents Directory
    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];

    // Detect which button was double tapped and set up the file to save
    NSString *filePath;
    NSString *fileName;
    if (sender == downloadRingtone1){
            filePath = [[NSBundle mainBundle] pathForResource:@"RingtoneTest" ofType:@"m4r"];
            fileName = @"RingtoneTest.m4r";
    } else if (sender == downloadRingtone2){
            filePath = [[NSBundle mainBundle] pathForResource:@"RingtoneTest2" ofType:@"m4r"];
            fileName = @"RingtoneTest2.m4r";

    NSString *m4rPath = [documentsDirectory stringByAppendingPathComponent:fileName];
    NSFileManager *fileManager = [NSFileManager defaultManager];

    // Detect if the file already exists
    BOOL fileExists = [fileManager fileExistsAtPath:m4rPath];

    if (fileExists) {
            UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"File Already Saved" message:@"The selected file already exists. Sync to iTunes to finish loading the file." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease];
            [alert show];
    } else {        
            // Save the file        
            [fileManager copyItemAtPath:filePath toPath:m4rPath error:nil];

            // Notify of the save
            UIAlertView *alert = [[[UIAlertView alloc] initWithTitle:@"File Saved" message:@"You must sync your device to iTunes to finish loading. For complete instructions, visit the \"Download Instructions\" page." delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil] autorelease];
            [alert show];
    }
}

ファイルマネージャーに問題があることはわかっています。投稿されているように、ファイルが存在するかのように常にifステートメントに入ります(存在しません)。if ステートメントをコメントアウトして強制的に保存すると、アプリがクラッシュします。私は何を間違っていますか?iPhoneと何か違うことはありますか?また、問題はないと思いますが、iPod touch でテストしています (最新の iOS 4.2.1 に更新されています。iPhone にアクセスできません。何か助けていただければ幸いです。

4

1 に答える 1

0

上記のコードは正しいです。誰かが同じ問題を抱えている場合は、Interface Builder の正しいアウトレットにボタンを接続してください。

于 2011-01-11T19:12:07.390 に答える