Based on your sample image, this would be a custom object that you would have to create as a subclass of UIImage
..or you could go the easier route just make it as a view in Interface Builder that you add as a subview.
An example of subclassing UIImage
would be like creating a helper method:
@interface UIImage (Labels)
- (UIImage*)toSize:(CGSize)size withLabel:(NSString *)label1 andSecondLabel:(NSString *)label2;
@end
but you would have to then implement drawing it all by yourself.
Instead, I would probably say go the route of creating a view in Interface Builder that has:
(1) UIImageView
(6) UILabels
that you can use as a subview and then you'd set them to whatever values like normal in code.