I have a ViewController with various labels. Each of these labels get dynamically populated at the run time based on various regex parsing logic running on an html page. The problem is, each regex match is taking 2-3 seconds and I have 8 such labels so that means i have to wait somewhere around 20-25 seconds before the view shows up!
这是一个非常坏的用户经验。 我希望这不会给用户造成痛苦,因此,希望每张标签在经过处理后和当其收到数据时独立装上,而不要等到所有8个标签上填写。
第5章能够做到这一点的任何方式?