I wish to do asynchronous loading in my UITable cell (I’m using custom cells) as the moment I click on UIButton ‘Details’, it will hang around 7~8 seconds as it is doing some internet connection for the checking of status. The only thing that requires loading is only the ‘(2) Book Status’ as shown below:

I’ve done my research but so far I only found solutions such as lazy loading, which is largely meant for loading of images. Would anyone give some advice for how to do asynchronous loading for text, preferably with some examples? Thanks alot in advance 🙂
Actually u need to do lazy loading for values in uitableviewcell. display value when available.
Refer LazyTableImages a sample project from apple which loads all values in cell along with image Asynchronously