Is there a way when I could add a UILabel on top of a UIImageView programmatically?
UILabel
UIImageView
So, at the end of the image should be an inscription.
UIImageView is a subclass of UIView, so you can add any interface object to it.
UILabel *xlabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 50, 20)]; xlabel.text = @"xxx"; [myImageView addSubview:xLabel];
Easier than
[imageView addSubview:yourLabel];