Hi i'm new to iPhone application.In my application i used tableview. when i click table cell it does to detail view which has tab bar controller.i have 3 tabbaritems. one to display description, another one to display 5 images in scrollview and third one to display location. when i click table cell it takes more time to load all images. please i need help to complete my application.Many people said to do asynchronously but i don't know how to do. thanks in advance. waiting for a solution
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Load the images in function loadImage and call it in background as follows...So your view will appear and images will be loaded in background
|
|||
|
|
|
You can use GCD to load those images asynchronously I don't know how is the layout of your viewcontrollers but you should put in the viewDidLoad of your ViewController which displays the images something like this.
|
|||
|
|
|
I guess you loading Images Synchronously. Which Cause main thread to be busy. please see this link - enter link description here It has AsynchImageView class, use This class Instead of UIImageView to show the Images. |
|||
|
|