首先,我有这段代码,它将我的视频文件保存在文档目录中:
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]];
将文件作为当前日期和时间保存到输入的文本中。但是,我不知道该怎么做。