Stackoverflow でのいくつかの議論では、画像を DB に保存するのは悪い考えであると言われています (時間の経過とともに画像の数が多くなり、アプリのクラッシュにつながる可能性があるため)。だから、どちらか
を。画像は iPhone 自体に保存でき、その場所のみを DB に保存できます 潜在的な問題: 画像が (アプリの外部で) 削除される可能性があり、アプリが次回それらを読み込めない可能性があります
b. the image can be shrunk to a small size (say, 100*100 pixels) and stored in the DB Potential Issue: will size be an issue if the image is shrunk to just 100x100pixels?
c. Doing both (a) & (b). So, small versions of the images will be stored in the DB and then, retrieved & displayed in the App, whereas, if the user chooses to see the original version of the image (whose probability is low), then that'll be fetched from the local directory & shown.
Your suggestions please? In my opinion, (c) seems a good option to go in for, in case (a) has the potential issue mentioned.