ViewController.m #import "JYZTextView.h" #define kTextBorderColor RGBCOLOR(227,224,216) #undef RGBCOLOR #define RGBCOLOR(r,g,b) [UIColor colorWithRed:
分类:
其他好文 时间:
2016-02-15 11:59:51
阅读次数:
186
blackView.backgroundColor = [UIColor colorWithRed:0 green:0 blue:0 alpha:0.5];
分类:
其他好文 时间:
2016-02-01 18:47:30
阅读次数:
133
UIButton *btn = [UIButton buttonWithType:UIButtonTypeCustom]; btn.frame = CGRectMake(100, 100, 50, 50); btn.backgroundColor = [UIColor redColor]; btn.
分类:
其他好文 时间:
2016-02-01 18:47:12
阅读次数:
100
#import <UIKit/UIKit.h> typedef void (^BLOCK)(UIColor *); @interface SecondViewController : UIViewController @property(nonatomic,copy)BLOCK backColorB
分类:
其他好文 时间:
2016-01-27 21:23:53
阅读次数:
115
IOS中自定义导航栏标题: UILabel *titleText = [[UILabel alloc] initWithFrame: CGRectMake(160, 0, 120, 50)]; titleText.backgroundColor = [UIColor clearColor]; tit...
分类:
移动开发 时间:
2016-01-27 14:38:41
阅读次数:
303
UIView 主要负责视图与用户的交互,真正的内容显示是通过UIView里面的图层CALayer来完成的(没有交互能力)1.创建CALayerCALayer *layer = [CALayer layer];layer.backgroundColour = [UIColor redColor].CG...
分类:
其他好文 时间:
2016-01-25 22:36:06
阅读次数:
202
-(void)scrollViewDidScroll:(UIScrollView *)scrollView{ [self.navigationController.navigationBar setBackgroundImage:[self imageWithBgColor:[UIColor col...
分类:
移动开发 时间:
2016-01-25 11:33:14
阅读次数:
251
1 /**/ 2 // 设置layer边框 3 self.customView.layer.borderWidth = 10; 4 // 设置layer边框颜色 5 self.customView.layer.borderColor =[UIColor bl...
分类:
移动开发 时间:
2016-01-24 00:38:29
阅读次数:
322
1 self.iconView.layer.borderWidth = 10;2 self.iconView.layer.borderColor = [UIColor purpleColor].CGColor;3 self.iconView.layer.cornerRadius = ...
分类:
移动开发 时间:
2016-01-24 00:36:19
阅读次数:
222
//// ViewController.m// text//// Created by 李东旭 on 16/1/22.// Copyright © 2016年 李东旭. All rights reserved.//#import #import "ViewController.h"// 定义...
分类:
移动开发 时间:
2016-01-23 13:13:30
阅读次数:
146