0

首先,我有这段代码,它将我的视频文件保存在文档目录中:

filePath = [NSString stringWithFormat:@"%@/Documents/%f.mp4", NSHomeDirectory(),[[NSDate date] timeIntervalSince1970]];

其次,我有一个UIAlertView允许用户输入他们要保存的视频的名称:

        UIAlertView * alert = [[UIAlertView alloc] initWithTitle:@"Alert" message:@"GIVE YOURE VIDEO A NAME" delegate:self cancelButtonTitle:@"Done" otherButtonTitles:nil];
        alert.alertViewStyle = UIAlertViewStylePlainTextInput;
        [alert show];

我有这个来显示输入的内容:

-(void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex
{
    if (buttonIndex == 0)
    {
        if (alertView.alertViewStyle == UIAlertViewStylePlainTextInput){
            NSLog(@"Entered: %@",[[alertView textFieldAtIndex:0] text]);

        }


         }
    else
    {
        NSLog(@"user pressed Button Indexed 1");
        // Any action can be performed here
    }
}

知道我想要做的是保存视频文件,其名称由输入到UIAlertView. 为此,我需要更改这一行:filePath = [NSString stringWithFormat:@"%@/Documents/%f.mp4", NSHomeDirectory(),[[NSDate date] timeIntervalSince1970]];将文件作为当前日期和时间保存到输入的文本中。但是,我不知道该怎么做。

4

1 回答 1

0

您是否在问如何用输入的文本替换日期?

您只需要传入您已经在使用 homeDirectory 执行的字符串,就像这样

filePath = [NSString stringWithFormat:@"%@/Documents/%@.mp4", NSHomeDirectory(),[[alertView textFieldAtIndex:0] text]];
于 2013-08-23T15:33:35.543 回答