Câu hỏi được gắn thẻ «nsdocumentdirectory»

9
Làm cách nào để tìm NSDocumentDirectory trong Swift?
Tôi đang cố gắng lấy đường dẫn đến thư mục Documents bằng mã: var documentsPath = NSSearchPathForDirectoriesInDomains(NSSearchPathDirectory:0,NSSearchPathDomainMask:0,true) nhưng Xcode báo lỗi: Cannot convert expression's type 'AnyObject[]!' to type 'NSSearchPathDirectory' Tôi đang cố gắng hiểu những gì sai trong mã.


10
Xóa tệp đã chỉ định khỏi thư mục tài liệu
Tôi muốn xóa một hình ảnh khỏi thư mục tài liệu ứng dụng của mình. Mã tôi đã viết để xóa hình ảnh là: -(void)removeImage:(NSString *)fileName { fileManager = [NSFileManager defaultManager]; paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); documentsPath = [paths objectAtIndex:0]; filePath = [documentsPath stringByAppendingPathComponent:[NSString stringWithFormat:@"%@", fileName]]; [fileManager removeItemAtPath:filePath error:NULL]; UIAlertView …
Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.