I have a ViewController with various shortcuts. Each of these labels is dynamically populated at runtime based on different regular expression parsing logic executed on the html page. The problem is that each regular expression takes 2-3 seconds, and I have 8 such labels, so I have to wait somewhere around 20-25 seconds before the presentation appears!
This is a very bad user interface. I want this to make it less painful for the user and therefore want to load each label independently when and when they receive data after processing the regular expression, and do not wait until all 8 marks have finished searching for their regular expressions.
Anyway, can this be achieved in ios 5?
source
share