It's just 1 custom cell with having one image at left hand side and two textfields at right hand side.
This custom cell's rowHeight will be 88 (double of normal cell rowHeight).
So you will need to create a custom cell and use it. These are some tutorial links which shows how to create custom cell using storyboards
http://www.appcoda.com/ios-programming-customize-uitableview-storyboard/
In a storyboard, how do I make a custom cell for use with multiple controllers?
Edit
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
if(indexPath.section == 0) {
if(indexPath.row = 0) {
// your custom cell here
}
} else {
// your normal cell here
}
}