UIView设置圆角1、比较简单的情况,UIView四个角都是圆角: UIView *aView = [[UIView alloc] init]; aView.frame = CGRectMake(0, 0, 300, 200); aView.backgroundColor...
分类:
其他好文 时间:
2015-11-19 13:11:42
阅读次数:
161
ai中常见的问题1、在AI中,有没有和CD一样的调整文字间距的快捷键呀?答:Alt+左右方向键移动箭头。2、在AI中,如何像快速放大缩小编辑区域?答:按住Alt滚动鼠标滚轮。3、在AI中,如何设置圆角矩形的圆角大小?答:点击圆角矩形工具,用鼠标点击画布,这里可以填。4、在AI中,..
分类:
其他好文 时间:
2015-11-18 16:49:16
阅读次数:
786
UIView*view=[[UIViewalloc]initWithFrame:CGRectMake(100,100,100,100)];view.backgroundColor=[UIColorredColor];//设置圆角view.layer.cornerRadius=10;view.layer.masksToBounds=YES;//.设置边框view.layer.borderWidth=5;view.layer.borderColor=[UIColorgreenColor].CGCo..
分类:
其他好文 时间:
2015-09-16 16:00:53
阅读次数:
134
UILabel * label =[[UILabel alloc]initWithFrame:CGRectMake(100, 200, 100, 100)]; label.backgroundColor=[UIColor cyanColor]; [self.view addSubview:labe....
分类:
移动开发 时间:
2015-09-09 22:37:34
阅读次数:
232
//login button // .h 中定义 UIButton *_loginBtn; @property (strong,nonatomic)UIButton *loginBtn; // .m 中实现设置按钮 @synthesize loginB...
分类:
其他好文 时间:
2015-09-01 10:41:28
阅读次数:
135
设置圆角Button
button.layer.borderColor =
UIColor.whiteColor().CGColor;
button.layer.borderWidth =
2;
button.layer.cornerRadius =
16;
设置圆角边框TextView
inputTextView.layer.borderColor =...
分类:
编程语言 时间:
2015-08-27 13:30:03
阅读次数:
391
1. 设置圆角:self.view.layer.masksToBounds = YES;self.view.layer.cornerRadius = 10.0f;2. 添加边框:self.layer.borderWidth = 5.0f;self.layer.borderColor = [[UICo...
分类:
移动开发 时间:
2015-08-17 23:09:22
阅读次数:
151
CSS3入门之边框与背景1、前言CSS3作为CSS的最新版本,在展示效果上有非常大的提升,接下来,我们就一起领略一下CSS3的风采吧。2、CSS3边框2.1、border-radius(用于设置圆角边框)在CSS2时代,要想实现圆角边框,是一件非常麻烦的事情。一种实现方式是使用一个背景图片,为了实现...
分类:
Web程序 时间:
2015-08-15 11:40:09
阅读次数:
151
在iOS开发中,任何可见视图都是继承于UIView的。 继承体系中,大部分UIView的属性适用于其任何孩子。 而UIView的layer属性可以绘制UIView的各种效果。其实我们看到的View的动画实际上也是layer在绘制。1、绘制圆角 cornerView.layer.corn...
分类:
其他好文 时间:
2015-08-13 17:53:51
阅读次数:
125
1 UIButton *signBtn = [UIButton buttonWithType:UIButtonTypeCustom]; 2 signBtn.frame = CGRectMake(0, 0, 80, 40); 3 [signBtn.layer setMasksToBounds:YES....
分类:
移动开发 时间:
2015-08-09 20:32:47
阅读次数:
218