我想创建这样的东西:
我想将带有UIButton的UITextField放入一个灰色框架中,我希望这个灰色框架包含按钮的边框。
请有人给我看一些示例代码!
THX!
答案 0 :(得分:3)
1。使用所需矩阵的UIImageView
。将背景图像设置为渐变灰色图像。
UIImageView*myImageView=[[UIImageView alloc] initWithFrame:yourFrame];
[myImageView setImage:[UIImage imageNamed:@"grayBackground.png"];
[self.view addSubview:myImageView];
2. 使用圆形矩形。 UITextField
使其成为图片视图的子视图。使用占位符作为“写回复...”使其成为您的图像视图的子视图。
UITextField*myField=[[UITextField alloc] initWithFrame:yourRect];
[myField setBorderStyle:UITextBorderStyleRoundedRect];
[myField setPlaceholder:@"Write a reply..."];
[myImageView addSubview:myField];
3。使用类型为UIButton
的{{1}}和发送图片作为背景图片,将其作为图片视图的子视图。
Custom
答案 1 :(得分:0)
简单的方法是创建带有灰色背景的标题栏并删除标题。并放置要放置它的文本字段和按钮。在标题栏外面配置大小和按钮并将其拖动到标题栏.u'我会得到你所拥有的形象。