开发者

About uitextfield on table cell

开发者 https://www.devze.com 2023-01-20 14:23 出处:网络
I am making a app in this app i am using uitextfield on table cell. I have made custom tablecell and declared a label and a textfield and I can see te开发者_如何学运维xtfield on every tablecell but no

I am making a app in this app i am using uitextfield on table cell. I have made custom tablecell and declared a label and a textfield and I can see te开发者_如何学运维xtfield on every tablecell but now i want that if I edit a taxtfield then changes will show all the textfield ......

If still there is something which is not clear then Please....


after finishing text edit call [tableView reload] to load the table with new text what you have edited.


After you have done the editing i.e. in

TextFieldEndEditing method(a delegate of textfield) call the method

[tableview reloadData]

which will reload the table and update your label and textfield inside cells to the set value.

hAPPY iCODING...

0

精彩评论

暂无评论...
验证码 换一张
取 消