Sporshiya Islam
Sporshiya Islam

Reputation: 81

Firebase offline mode store image

I was trying to Store data offline by using firebase database reference. I read documentation and it say one line code will store everything.

Database.database().isPersistenceEnabled = true

But this line only store text. It's not storing image offline.

Upvotes: 0

Views: 324

Answers (2)

Faizul Karim
Faizul Karim

Reputation: 146

isPersistenceEnabled is only storing your text content. if you want to save image you need to use core data. Core data is little bit hard to save large file. i would recommend to use NSfileManager to Store your image.

Hope it will help .

Upvotes: 1

David Kadlcek
David Kadlcek

Reputation: 476

Do you want to send data after you will be connected to WiFi? So you can store your data to CoreData and after you will be connected to Wifi send it to Firebase storage

Upvotes: 0

Related Questions