启动画面应检查数据库中的数据
您好,我正在创建一个地图应用程序, 最初,当我单击 iPhone 上的应用程序图标时,应显示一个显示应用程序徽标和加载栏的启动屏幕。
预期流程: Screen应达到以下初始化目标
1.同步Web服务的初始化 2.在设备上创建或打开可用数据库并将引用保留在内存中以便更快地调用。 3.验证数据库中可用的用户信息记录 4.建立一个天气图,其中应包含所有37种天气,以便将来参考 每个处理步骤进度条应增长/填充 25%
这怎么可能。请任何人帮助我完成此任务
hi i am creating an map application ,
initially when i click on the application icon on iphone a Splash screen showing application logo and a loading bar should be shown.
Expected Process:
Screen should achieve following objectives of initialization
1.Initialization of Synchronization Web Service
2.Create or Open available database on the device and keep the referece in the memory for quicker calling.
3.Validation of available UserInformation Record in database
4.Build up a Weather Map which should hold all 37 types of weather available for easy future reference
On each processing step progress bar should grow/fill with 25%
How could this be possible.Please anybody help me in achieving this tasks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
启动屏幕只是一个应该命名为
default.png
的图像。它将在您的应用程序启动期间显示。要实现您想要的效果,您必须定义具有相同背景和 UIProgress 的第一个视图控制器,并执行同步和其他过程。
初始化完成后,您必须显示“真实”的第一个视图控制器
The splash screen is just an image that should be called
default.png
. It will display during the launch of you app.To realize what you want you have to define the first view controller with the same background and a UIProgress and do your sync and other processes.
When initialization is done you have to display your "real" first view controller
当用户启动应用程序时,您可以显示 1 或 2 秒的启动屏幕,然后您可以使用文本消息显示应用程序的进度(状态)。
例如“同步服务初始化”、“存储到数据库”、“加载地图”。
上述文本消息。只是一个参考,您可以在屏幕上显示更多描述性文本以及进度条。
When user launch the application you could show a splash screen for 1 or 2 second after that you could show the progress (status) of your application using text msg.
for example "Initialization of Synchronization Service" ,"Storing to data base", "Loading map" .
The above text msg. is just a reference,you could have more descriptive text to show on screen along with progress bar.