vote up 0 vote down star

Hi,

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

flag

59% accept rate

2 Answers

vote up 3 vote down check

You should implement

- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath

delegate method. and return 100.0 there.

link|flag
vote up 0 vote down

I dont think there is such a method in UITableView...

Instead you can use the property rowHeight...
Try, tableView.rowHeight =100;

link|flag
Actually it's in UITableViewDelegate. – Epsilon Prime Oct 28 at 21:34

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.