单击按钮后打开 UITableView
我有一个 Tabbar - 应用程序,我想在单击按钮后在 UITextfield 中显示 NSMutableArray 中的数据(NSString),或者在 UITableView 中显示更好的数据。
我如何初始化并打开并填充 UITabelView?
问候
I have a Tabbar - Application and i want to show data (NSString) from a NSMutableArray in an UITextfield or better in an UITableView after a button-click.
how can i init and open and fill the UITabelView?
regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这看起来像是 UITableView 的基本实现。苹果 UITableView 文档 应涵盖您对 UITableViews 的任何问题。对于按钮单击,将按钮的 IBAction 绑定到调用 [yourTableView reload]。这会强制加载表视图。
That seems like a basic implementation of a UITableView. The Apple UITableView documentation should cover any questions you have on UITableViews. For your button click, tie the IBAction of the button to call [yourTableView reload]. This forces a load of the table view.
您的 tableView 和 textField 是否与按钮所在的同一选项卡中?
假设你有 stringArray ,它保存着所有 NSString 对象。
那么你可以设置
如果你想将整个数组添加到tableView,你将需要使用该stringArray并实现tableView方法。
但我还是不清楚你的问题。
Are your tableView and textField in the same tab where your button is?
Say you have
stringArray
which is holding all the NSString Objects.then you can set
If you want to add the whole array to tableView, you will need to use that stringArray and implement tableView Methods.
But still I am not clear with your question.
这是一个过于宽泛的问题。为什么不看一些示例代码并尝试找出答案呢?如果您遇到困难,请回来并发布问题和一些代码来显示您遇到问题的位置。
This is an overly broad question. Why not look at some example code and try to figure it out? If you get stuck, come back and post a question and some code showing where you are having a problem.
您需要了解 UIViewController 及其 UIView 的生命周期
重点关注负责 UIViewControllera 生命周期的方法:
由此出发在点击按钮后的初始化方法之一中,必须填写表格并在reloaddata后调用
You need to know the Life Cycle of UIViewController and its UIView
Concentrate on the methods that are responsible for the life cycle of the UIViewControllera:
Proceeding from this in one of the initialization methods after clicking on the button, you must fill out the table and call after the reloaddata