我正在开发一个应用程序。其中我将图像添加为 UIlabel 的背景。之后我为 UILabel 提供文本。但它不显示文本。所以请告诉我如何显示带有背景图像的标签文本. 下面的一个是将图像设置为背景的代码。
UIImage *ansimage=[UIImage imageNamed:@"AnswerBox_standard.png"];
UILabel *a1=[UILabel alloc]init];
a1.frame=CGRectMake(10, 160, ansimage.size.width, ansimage.size.height);
a1.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"AnswerBox_standard.png"]];