9宫格图片可以指定缩放区域,任意png图片都可以,通常用来做聊天消息等的背景
安卓中可以使用google提供的工具制作 9.png图片,直接把 9.png图片作为背景就可以。
ios要通过代码实现
关键代码
UIButton* but=[UIButton buttonWithType:UIButtonTypeCustom];
but.frame=CGRectMake(20, 100, 150, 40);
[but setTitle:@"hello world" forState:UIControlStateNormal];
UIEdgeInsets ins;
ins.left=20;
ins.right=20;
ins.top=0;
ins.bottom=0;
UIImage* img=[UIImage imageNamed:@"bg3"];
img=[img resizableImageWithCapInsets:ins];
[but setBackgroundImage:img forState:UIControlStateNormal];
but.center=self.view.center;
[self.view addSubview:but];
背景图片3 ,尺寸 42*40
效果图