Schritt 1: & speichern
NSError *err = nil;
NSString *url = [[NSString stringWithFormat:@"http://www.example.com/playlist.m3u8"] stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSString *the_file = [NSString stringWithContentsOfURL:[NSURL URLWithString:url] encoding:NSUTF8StringEncoding error:&err];
if(err != nil) {
// do some error handling, e.g. NSLog(@"Fail: %@", [err localizedDescription]);
} else {
// save the file (see Step 2)
}
Schritt 2 die Datei herunterladen: Speichern Sie die Datei
Sie entweder als Datei speichern oder als Objekt speichern.
// save as file
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *docDirectory = [paths objectAtIndex:0];
NSString *fileName = [NSString stringWithFormat:@"%@/playlist.m3u8", docDirectory];
[the_file writeToFile:fileName atomically:NO encoding:NSASCIIStringEncoding error:nil];
// OR, save as object
[[NSUserDefaults standardUserDefaults] setObject:the_file forKey:@"MY_M3U8"];
Schritt 3: Lesen Sie die Datei
// read from file
NSString *textPath = [docDirectory stringByAppendingPathComponent:@"playlist.m3u8"];
// the FILE is loaded
// OR, read from object
NSString *content = [[NSUserDefaults standardUserDefaults] stringForKey:@"MY_M3U8"];
// it will contain the CONTENT of file
Schritt 4: Gehen Sie in Ihrem Player
Sie es getan haben sollte. Ich brauche nicht zu schreiben, ja?
Sie meinen, Sie machen eine iOS App speichern m3u8? – Raptor
@shivanRaptor: Ja – Daisy
Zeigen Sie uns Ihre aktuellen Codes. Wo bist du stecken geblieben? – Raptor