ios - Implement heightForRowAtIndexPath -



ios - Implement heightForRowAtIndexPath -

i have next code:

- (uitableviewcell *) tableview:(uitableview *)tableview cellforrowatindexpath:(nsindexpath *)indexpath { if (indexpath.row == 10) { tableview:heightforrowatindexpath // create lastly row height = 100; } homecoming cell;

you mean this?:

-(cgfloat)tableview:(uitableview *)tableview heightforrowatindexpath:(nsindexpath *)indexpath { if (indexpath.row == 10) homecoming 100.0; homecoming 44.0; }

ios uitableview

Comments

Popular posts from this blog

php - How to pass multiple values from url -

xslt - DocBook 5 to PDF transform failing with error: "fo:flow" is missing child elements. Required content model: marker* -

database - php search bar when I press submit with nothing in the search bar it shows all the data -