xcode - how to access multiple UITextView in table view cells -


i have table view several cells, each containing uitextview. user can edit each text view clicks. when clicks done, how access each text view, read each edited?

you can use uitextfield delegate text current text filed -

- (bool)textfieldshouldreturn:(uitextfield *)textfield {     nsstring *textfieldvalue = [textfield text]; } 

Comments