xcode - iPhone: How do I add a 'next 25' like at the bottom of the screen in the app store app? -
i've got uitableview , want have 'next 25' feature in app store app.
however, i've no idea control use , how develop it.
can shed light on , give me info possible ?
the first half of answer above correct. second half (using reloaddata) isn't best way it.
once have new data, should call insertrowsatindexpaths:withrowanimation:
on table view. tells table view you've added bunch of new rows , lets animate addition of new rows. example, might pass uitableviewrowanimationfade or uitableviewrowanimationtop. it's more efficient, because table view doesn't have reload , redraw rows in table.
also, take @ of videos on table views 2010 wwdc (you can find them @ http://developer.apple.com/iphone , scroll bottom). they've got lots of great stuff.
Comments
Post a Comment