UIImage *image = [UIImage imageNamed:@"back2.jpg"]; //创建一个图片对象,这个方法如果图片名称相同,不管我们调用多少次,得到的都是同一个图片对象。 self.view.backgroundColor = [UIColor colorWithPat....
分类:
其他好文 时间:
2014-09-24 16:23:57
阅读次数:
174
/** * 将UIColor变换为UIImage * **/+ (UIImage *)createImageWithColor:(UIColor *)color{ CGRect rect = CGRectMake(0.0f, 0.0f, 1.0f, 1.0f); UIGraphicsBe...
分类:
移动开发 时间:
2014-09-22 20:45:23
阅读次数:
198
VFL语言实现以下界面:- (void)viewDidLoad{ [super viewDidLoad]; //创建上面的view UIView *topView = [[UIView alloc]init]; topView.backgroundColor = [UIColor redCo...
分类:
其他好文 时间:
2014-09-22 02:33:11
阅读次数:
198
iOS6和iOS7的适配:#define iOS7 ([[UIDevice currentDevice].systemVersion doubleValue] >= 7.0)#endif根据RGB设置一个全局背景色://2.获得RGB#define YLYColor(r,g,b) [UIColor ...
分类:
其他好文 时间:
2014-09-20 15:59:08
阅读次数:
273
UILabel *testLabel = [[UILabel alloc] initWithFrame:CGRectMake(10, 50, 0, 0)]; testLabel.backgroundColor = [UIColor whiteColor]; testLabel.tex...
分类:
移动开发 时间:
2014-09-19 17:06:05
阅读次数:
177
CALayer与UIView之间的关系
UIView本身不可视,其内部的CALayer才具有显示功能
改变CALayer的属性,就是改变UIView的外观(如圆角、阴影)
CALayer的常用属性(如位置、锚点)
CALayer的常用属性(如边框、圆角)
UIColor和UIImage必须转成可以跨平台的CG...
分类:
移动开发 时间:
2014-09-18 11:30:44
阅读次数:
249
- (void)viewDidLoad{ [super viewDidLoad]; self.view.backgroundColor = [UIColor whiteColor]; UIImage *image = [UIImage imageNamed:@"2"]; //原图片 UIIm...
分类:
其他好文 时间:
2014-09-17 18:34:14
阅读次数:
231
一般的我们都是通过自定义视图来设置导航条的title颜色和字体的
UILabel *titleLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 100, 40)];
titleLabel.text = @"详情";
titleLabel.textColor = [UIColor whiteColor];
titl...
分类:
移动开发 时间:
2014-09-16 15:56:40
阅读次数:
183
nameText.borderStyle = UITextBorderStyleLine;nameText.layer.borderColor = [UIColor grayColor].CGColor;设置了这两个东东,边框一直没变颜色,加上这个就行了nameText.layer.borderWi...
分类:
其他好文 时间:
2014-09-15 17:17:19
阅读次数:
142
block的传值1.第一页中声明一个block,需要传入一个颜色,让当前的view变色//声明一个block,需要传入一个颜色,让当前的view变色void(^changeColor)(UIColor*color)=^(UIColor*color){self.view.backgroundColor=color;};2.第一页中//block传值---------将block给第二个页面Second..
分类:
其他好文 时间:
2014-09-12 10:21:04
阅读次数:
210