码迷,mamicode.com
首页 >  
搜索关键字:设置圆角    ( 139个结果
UIView设置圆角
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中常见的问题
ai中常见的问题1、在AI中,有没有和CD一样的调整文字间距的快捷键呀?答:Alt+左右方向键移动箭头。2、在AI中,如何像快速放大缩小编辑区域?答:按住Alt滚动鼠标滚轮。3、在AI中,如何设置圆角矩形的圆角大小?答:点击圆角矩形工具,用鼠标点击画布,这里可以填。4、在AI中,..
分类:其他好文   时间:2015-11-18 16:49:16    阅读次数:786
CALayer的用法
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
ios 给控件选择性设置圆角
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
转-UIButton定义和设置圆角
//login button // .h 中定义 UIButton *_loginBtn; @property (strong,nonatomic)UIButton *loginBtn; // .m 中实现设置按钮 @synthesize loginB...
分类:其他好文   时间:2015-09-01 10:41:28    阅读次数:135
Swift开发教程--设置圆角Button和圆角边框TextView
设置圆角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
iOS 设置控件圆角及边框
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入门之边框与背景
CSS3入门之边框与背景1、前言CSS3作为CSS的最新版本,在展示效果上有非常大的提升,接下来,我们就一起领略一下CSS3的风采吧。2、CSS3边框2.1、border-radius(用于设置圆角边框)在CSS2时代,要想实现圆角边框,是一件非常麻烦的事情。一种实现方式是使用一个背景图片,为了实现...
分类:Web程序   时间:2015-08-15 11:40:09    阅读次数:151
UIView,UIButton,UIImageView等设置圆角,设置阴影,设置边框的方法
在iOS开发中,任何可见视图都是继承于UIView的。 继承体系中,大部分UIView的属性适用于其任何孩子。 而UIView的layer属性可以绘制UIView的各种效果。其实我们看到的View的动画实际上也是layer在绘制。1、绘制圆角 cornerView.layer.corn...
分类:其他好文   时间:2015-08-13 17:53:51    阅读次数:125
iOS开发--UIButton 设置圆角 边框颜色 点击回调方法
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
139条   上一页 1 ... 8 9 10 11 12 ... 14 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!