我正在制作一个 iOS 游戏,它将从数据库中的线索存储库中选择一个随机线索(文本)和图像(线索和图像一组,1 行)。我有一个带有 webMethods 和功能的 Web 服务,允许我将数据库行拉出。(已测试线索)我一直在 Google 上搜索有关如何将图像从 db 导入 iOS 的文章,但无济于事。
如何通过 Web 服务从数据库导入图像(使用 c# 构建)?谁能指导我正确的方向?我希望它存储在 mutableArray 中,以便在播放器完成播放后,线索和图像将从临时数组中擦除。(我不想将图像放在应用程序中,因为这会使应用程序变得非常大,并且用户能够上传自己的线索和图像,因此来自数据库的实时提要是理想的方法。
现在我在导入图像时被困在网络服务方面。我目前正在使用 List 来存储线索,但不知道用什么来存储图像。我正在考虑使用 ArrayList 来存储对象,但不知道如何在 iOS 端将其转换为图像。正如我上面提到的,我似乎找不到任何通过网络服务将图像导入 iOS 应用程序的教程或示例。(或者我使用了错误的搜索词)
如果any1可以帮助我,或者提供能够实时更新图像和线索的替代解决方案,将会很有帮助。
编辑 - 我找到了 ImageList() 和 List。我现在应该使用哪一个?还发现制作图像文件只是->图像测试文件;
EDIT2 - problem I'm facing
-dealing with image file (image? imagelist?
-when drawing datarow from DB in webservice, how do i deal with the image file. (guessing ImageList or List<image> (after some luck on research)
-assuming 2nd point works fine, i should be able to solve the client side
(sorry, noobie at webservice, )
.
what I have
-webservice that draw datarow from database for clue(string) (tested and working fine with my function)
-iOS client side with RESTful architecture
.
what I need
-webservice that draw datarow from database for picture(image (format not so important yet)) (code should be similar to drawing clue, only which function to store it in. (using List<string> for clues)