如何将值从一个页面传递到另一页面并在iPhone中单元格的页面文本标签中显示值?
我有一个应用程序,当我单击表格项目时,会打开一个新页面,它允许我在文本字段和文本视图中输入详细信息,然后单击提交按钮,它应该导航到上一页(即表格视图)并填充表视图单元格的文本标签,其值在文本字段和文本视图中输入。
这怎么可能?如何使用文本字段和文本视图中输入的值填充表格视图单元格?
I have an application in which when I click on the table item a new page opens, which allows me to enter details in textfield and textview, and clicking on the submit button it should navigate to the previous page which is a tableview and populate the the textlabel of the cell of the table view with the value which are entered in the textfield and textview.
How is this possible? How could I populate the tableview cell with the values entered in the textfield and textview?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
一切都取决于数据在 TableView 中的存储方式。例如,如果您有一个 plist 文件,则在提交新值时必须重写该文件。
之后,在:
您必须重新加载plist文件并调用
[self.tableView reloadData];
但是还有另一种方法。如果您只有几个值,可以使用 NSUserDefault 类引用 在您的应用中存储数据。
Everything depends on how the data are stored in your TableView. For example if you have a plist file you must re-write this file when you submit new value.
After that, on :
You must reload plist file and invok
[self.tableView reloadData];
However there is an other method. If you have just few values you can use NSUserDefault class Reference to store data in your app.
您需要使用以下委托函数:
作为
objInf 是第二类的对象,nameLable 是 NSString,您可以将其设置为要在其中显示数据的第二类的标签文本。
You Need to use following delegate function:
As
objInf is second class's object and nameLable is NSString which you can set as text of label of your second class where u want to display the data..
通过使用属性,您可以做到这一点。输入页面上文本字段字符串的字符串属性,然后只需创建该页面的对象即可访问这些属性。
请记住,如果创建新对象,则需要单调对象,然后它会重新初始化属性。
因此使用它来创建该输入类的对象。
这给出了导航堆栈中的对象。
By using property you can do this. string properties of textfield strings on input page then simply by making object of that page you can access these property.
remember you need singletone object if you make new object then it reintialise the properties.
so use this for making object of that input class.
this gives object from navigation stack.
这可以通过两种方式实现。
一是,你可以在另一个 ViewController 中拥有 2 个 NSString 属性。 1 分配数据的方法。喜欢
通过提交切换到另一个 ViewController 时,使用其对象来分配文本,例如
希望有帮助。
That can be achieved by 2 ways.
One is, You can have 2 NSString property in another ViewController. 1 Method to assign data in that. like
While switching to another ViewController by submitting use its object to assign text like
Hope it helps.