Currently I am loading all of my UITableViewControllers
with images and text. I'm not sure if there is a way of shortening my loading times. I'm thinking that GCD might be the best route to go, however, I'm not too sure that I'm using this correctly:
dispatch_async(dispatch_get_main_queue(), ^{
[some method];
});
This is being loaded in the ViewDidLoad
, and I'm unsure if this is the correct place to use GCD. Also, is this correct way of asynchronously loading information?