I did by code the following:
UILabel * label = [[UILabel alloc] initWithFrame:CGRectMake(40, 70, 300, 50)];
label.backgroundColor = [UIColor clearColor];
label.textAlignment = UITextAlignmentCenter; // UITextAlignmentCenter, UITextAlignmentLeft
label.textColor=[UIColor whiteColor];
label.text = @"Telechargez et consultez les catalogues et les tarifs de la gamme Audi au format PDF";
[self.view addSubview:label];
And it looks like this
but I want it to look like this. How to change the label’s properties?
To show the UILable as your displayed in your image, you need to set the following property of UILabel and also increase the height of your Label.
Should be like as below ..