I am setting the row height of my UITableView using following code
[tableView setRowHeight: 100.00];
I am using the single line as separator in the UITableView.
Eventhough setting the height above, height of row does not get change.
Please help me
|
I am setting the row height of my UITableView using following code [tableView setRowHeight: 100.00]; I am using the single line as separator in the UITableView. Eventhough setting the height above, height of row does not get change. Please help me
| |||
|
feedback
|
|
You should implement
delegate method. and return 100.0 there. | |||||||||||
feedback
|
|
You should avoid the
In the UITableViewController subclass it could be done, for instance, in the
| ||||
|
feedback
|
|
The row height is baked into the cells when they are first displayed. Did you set UITableView#rowHeight before setting the data source? | |||
feedback
|
|
I dont think there is such a method in UITableView... Instead you can use the property rowHeight... | |||||||
feedback
|
|
The better and cleaner solution is to implement the delegate function (Maybe not the best one if your UITableView has many rows ...). Also, think that UITableVieCell are UIView so you could change their height firstly... Delegates are very powerful in iPhone dev, here the UITableViewDelage: You can also change the indentForRow, displayCellForRow, heightForRow,edit stuff ..... | |||
|
feedback
|