iphone - Dynamic UITextView within Dynamic UITableViewCell height? -


i not finding solution issue. have uitextview subclassed in uitableviewcell. right have textview dynamically resizing, cell not. because heightforrowatindexpath being called on load. how can have called without calling cellforrowwithindexpath (i.e. reloaddata)...

any great! thanks!

its pretty simple, use inside uitableviewcell

[tableview beginupdates]; self.frame = cgrectmake(0,0,width,new height); [tableview endupdates]; 

can't remember, superview of uitableviewcell should uitableview.


Comments

Popular posts from this blog

Python __call__ special method practical example -

arrays - jQuery - Retrieve values from HTML elements and return their sum -