iphone-常用的对视图图层(layer)的操作
2010-10-14 05:33:00 来源:本站整理核心提示:iphone-常用的对视图图层(layer)的操作对图层的操作:1.给图层添加背景图片:myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;2.将图层的边框设置为圆脚myWebView.layer.corne
iphone-常用的对视图图层(layer)的操作
对图层的操作:
1.给图层添加背景图片:
myView.layer.contents = (id)[UIImage imageNamed:@"view_BG.png"].CGImage;
2.将图层的边框设置为圆脚
myWebView.layer.cornerRadius = 8;
myWebView.layer.masksToBounds = YES;
3.给图层添加一个有色边框
myWebView.layer.borderWidth = 5;
myWebView.layer.borderColor = [[UIColor colorWithRed:0.52 green:0.09 blue:0.07 alpha:1] CGColor];
- ››常用的Windows 7操作系统实用技巧
- ››iphone图片拉伸的几种方法
- ››iphone正则表达式的简单使用
- ››iPhone开发Unresolved Symbols CAKeyframeAnimati...
- ››IPhone开发-“此证书是由未知颁发机构签名”解决方...
- ››IPhone开发-整合私钥和证书,生成.p12文件
- ››iPhone应用开发-UIPickerView选取器详解
- ››iphone 获取屏幕的宽度和高度
- ››iPhone读取工程包中的二进制文件
- ››iPhone新手机 不挂YouTube APP
- ››iPhone 获取指定格式的时间和日期
- ››iPhone版PPS走进生活 观赏体验媲美PC版
赞助商链接