我想要像这样的UILabel。我在哪里可以找到一个?
答案 0 :(得分:1)
使用气泡图像创建图像视图。添加一个uilabel作为imageview的子视图并定位它。
UIImageView *imgv = [[UIImageView alloc]initWithFrame:CGRectMake(0,0,100,100)];
imgv.image = [UIImage imageNamed:@"bubble.png"];
//将标签定位到imageview的中心
UILabel *lbl = [[UILabel alloc]initWithFrame:CGRectMake(20,30,60,40)];
[imgv addSubview:lbl];
[lbl release];
[self.view addSubview:imgv];
[imgv release];