如何将信息从一种视图转移到另一种视图

发布于 2024-11-08 19:27:56 字数 290 浏览 0 评论 0原文

我的应用程序中有这个视图 http://hpics.li/ce94f6c 用户应该输入飞行号码,他将获得我从表视图中的网络服务获得的信息。 但是这个表格视图很小,我想在 vie 的高度和宽度上制作一个。 我应该隐藏标签和按钮然后显示大表格视图吗? 或者我应该创建一个新的 xib 并在用户单击按钮时加载它? 或者我应该使用 .xib 创建一个新的 tableviewcontroller 并将 json 发送给他进行解析并放入表视图中?

请帮忙

i have this view in my app
http://hpics.li/ce94f6c
the user should put the fly number and he will get informations taht i got from a web service in the table view .
But this table view is small and i want to make one at the height and width of the vie .
Should i hide the label and button and then show the large table view ?
Or should i make a new xib and load it when the user click the button ?
or should i create a new tableviewcontroller with .xib and send to him the json to parase and put in the table view ?

help please

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

梦里南柯 2024-11-15 19:27:56

你能做的就是选择第二个选择。

  1. 您可以首先创建一个 ViewController,其中有一个标签和一个按钮字段。 (在这种情况下,您还应该放置一些图像,因为整个屏幕上只有一个按钮和一个标签似乎很奇怪)。
  2. 单击该按钮后,您可以调用 Web 服务,然后导航到新的 viewController,您可以在其中在 tableView 中显示 Web 结果。

What you can do is to go with your second option.

  1. You can firstly create a ViewController where you have a label and a button field. (You should also put some image is this case as having only a button and a label on complete screen will seem to be odd).
  2. Once you click the button you can call the web service and then navigate to a new viewController where you can display web results in a tableView.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文