Normally I can set the background image of a UITableView using
[self.tableView setBackgroundView:imageView];
Also, using SDWebImage I can add an image to a UIImageView in two steps:
#import "SDWebImage/UIImageView+WebCache.h"
...
[self.myImageView sd_setImageWithURL:imageURL];
But now I need to add a background image to a UITableView using SDWebImage. How might I do that?