Hi ...I think is a little complete problem
about textfield in tableview cell
it looks like [IP xxx.xxx.xxx.xxx ] <--this is a cell in tableview
So...It means at least 4 textfield in a cell
But I have some questions
*1.*How to add more textfield to cell.accessoryView ?**
This is how I set a textfield in a cell
UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 185, 30)];
cell.accessoryView = textField;
But it only has one textfield in a cell ,so ...can I have mutiple accessory view in a cell ?
2.The tableview got 3 rows ,1.IP 2.Subnet Mask 3.Gateway first 2 done button is "Next" button ,Last one is "Done" button,I look this discussion before ,but the answer is not works for me ,I think the problem is I didn't give a default done button a tag .So when I press Next button,It won't jump to next textfield.
How to give a default done button a tag ?
3.How to let textfield keep record what I type ?It always clear after I leave the view... any tutorials ?
4.How compare input text is all integer between 0~255 and set max length is 3 numbers