In my iphone application there is 4 forms. These forms are having UITextField, UITextView, UILabel and UIButton. Currently i placed these items in UIScrollView. But, now my client want the forms look like ‘iPhone Settings app’. How can i place the UITextView,UITextField, UILabel and UIButton in UITableView? The user need to enter their details in this forms, the tableview should move up when the user click the UITextField in bottom. How can do this? Please suggest me any sample code/ ideas? Thanks in advance.
In my iphone application there is 4 forms. These forms are having UITextField, UITextView,
Share
UITableViewCellhas a view calledcontentView.Use
[cell.contentView addSubview:yourView]to add the items to your cell.