在实际开发中 有时美工会给我们一种颜色值(形如#FF0000)去设置某个view的背景色,这时我们需要把这种十六进制的值转换为UIColor对象下面这个方法就很有用了:-(UIColor*)stringTOColor:(NSString*)str{ if(!str||[strisEqualToStr...
分类:
其他好文 时间:
2014-09-11 16:42:22
阅读次数:
123
本文目录一、添加一个简单的图层二、添加一个显示图片的图层三、为什么CALayer中使用CGColorRef和CGImageRef这2种数据类型,而不用UIColor和UIImage?四、UIView和CALayer的选择五、UIView和CALayer的其他关系*上一讲已经说过,UIView内部默认...
分类:
其他好文 时间:
2014-09-05 22:16:32
阅读次数:
271
#import<UIKit/UIKit.h>@interfaceUIColor(Addition)+(UIColor*)lightGreenColor;@end#import"UIColor+Addition.h"@implementationUIColor(Addition)+(UIColor*)lightGreenColor{return[UIColorcolorWithRed:kRed/255.0green:kGreen/255.0blue:kBlue/255.0alpha:1.0];}@end
分类:
其他好文 时间:
2014-09-05 03:24:21
阅读次数:
249
#pragmamark-将16进制字符串转换成UIColor-(UIColor*)generateColorObjectWithHex:(NSString*)hexString{unsignedintred=0,green=0,blue=0;NSRangerange={0,2};range.location=0;NSString*redString=[hexStringsubstringWithRange:range];NSScanner*redScanner=[NSScannerscann..
分类:
移动开发 时间:
2014-09-04 03:05:08
阅读次数:
170
代码截屏分五步:
首先在视图控制器上创建一个视图
UIView *aView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 568)];
aView.backgroundColor = [UIColor blackColor];[self.view addSubview:aView];[aView release];
...
分类:
移动开发 时间:
2014-09-03 13:04:36
阅读次数:
222
UIView *view=[[UIView alloc] initWithFrame:CGRectMake(50, 50, 100, 100)]; view.backgroundColor=[UIColor redColor]; view.tag=10; [self.w...
分类:
移动开发 时间:
2014-08-31 17:02:11
阅读次数:
166
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view.
self.view.backgroundColor = [UIColor whiteColor];
UIScrollView *scrollView = [[UIScrollVie...
分类:
其他好文 时间:
2014-08-31 09:18:51
阅读次数:
259
视频(ffmpeg),即时通讯(需要服务器支持,需要socket通信协议)技术非常重要。。1.UIWindow--窗口类。。UIScreen屏幕类。。UIColor颜色类view--视图:代表屏幕上的一个举行区域是所有控键的父类,,,基类,,,规定了一些通用的属性和方法bringSubviewToFront把指定的..
分类:
其他好文 时间:
2014-08-29 11:15:38
阅读次数:
251
// UIStepper的常用方法
UIStepper *oneStepper = [[UIStepper
alloc] init];
oneStepper.frame =
CGRectMake(20, 20,
20, 20);
oneStepper.backgroundColor = [UIColor
blueColor]; // 设置背景色
...
分类:
移动开发 时间:
2014-08-29 11:08:27
阅读次数:
223
效果如上。只要补上以下方法://设置多于的分割线-(void)setExtraCellLineHidden: (UITableView *)tableView{ UIView *view = [UIView new]; view.backgroundColor = [UIColor clearC.....
分类:
移动开发 时间:
2014-08-29 10:57:27
阅读次数:
224