Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GroupedTableView in iphone

i want to create a grouptableview for my application in which some section are editable and some are checkedmark can any body tell me in details to how i do this , i want to put content in row like 'placeholder in textbox'.

I have tried many times and search in google bt i m nt getting any idea please help to out this issues. i want to create grouptableview like this image for my application.

!Screen shot

like image 925
Gamer Avatar asked Nov 14 '22 19:11

Gamer


1 Answers

If you want to edit the content of cell, you have to add UITextField/UITextView to the cell. You can very well assign a placeHolder for the UITextField/UITextView. Refer this SO Post.

For check mark you can use default cell by toggling its accessoryType between UITableViewCellAccessoryCheckmark and UITableViewCellAccessoryNone.

like image 88
EmptyStack Avatar answered Dec 30 '22 21:12

EmptyStack