创建UIImagePickerController //设置导航栏背景颜色 picker.navigationBar.barTintColor = HexRGB(0x4294FE); //设置右侧取消按钮的字体颜色 picker.navigationBar.tintColor = [UIColor ...
分类:
其他好文 时间:
2017-08-29 12:43:01
阅读次数:
247
/** 大图 */ - (IBAction)bigImg { //1.添加按钮遮罩层 UIButton *cover=[[UIButton alloc] init]; cover.frame=self.view.bounds; cover.backgroundColor=[UIColor black... ...
分类:
移动开发 时间:
2017-08-23 10:36:14
阅读次数:
297
#define kWidth [UIScreen mainScreen].bounds.size.width #define kHeight [UIScreen mainScreen].bounds.size.height #define RGBA(r,g,b,a) [UIColor colorWi ...
分类:
其他好文 时间:
2017-08-22 10:46:43
阅读次数:
128
// NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 // NSForegroundColorAttributeNam 设置字体颜色,取值为 UIColor对象,默认值为黑色 // NSBackgroundColorAttributeN ...
分类:
移动开发 时间:
2017-08-19 12:53:08
阅读次数:
276
非常easy的一句代码 self.view.backgroundColor = UIColor.clearColor() 由此联想开来,非常多的控件想设置为背景透明都能够用UIColor.clearColor() 非常easy的一句代码 self.view.backgroundColor = UIC ...
分类:
编程语言 时间:
2017-08-12 10:19:05
阅读次数:
180
1.每一个View都自带一个CALayer,称为rootLayer,layer能够和实现与View一样的显示功能,可是它不继承UIResponse,也就是说它无法处理事件,所以为了处理事件还是要用View,假设仅仅是显示,能够选择layer。 以下的代码实现了自己定义一个layer加入到控制器的ro ...
分类:
其他好文 时间:
2017-08-04 19:30:00
阅读次数:
146
1.name xib的名字 owner当前类对象 options初始参数 实际应用: nibs[0]是当前view的对象 nibs[1]当前view的背景 ,我们可以在init中对当前frame以及当前view的背景的frame进行赋值, nibs[1]的背景是半透明的,如果当前的xib是View, ...
分类:
其他好文 时间:
2017-08-03 12:30:45
阅读次数:
485
- (UIColor *)colorAtPixel:(CGPoint)point { // Cancel if point is outside image coordinates if (!CGRectContainsPoint(CGRectMake(0.0f, 0.0f, self.size.w ...
分类:
移动开发 时间:
2017-07-24 10:06:43
阅读次数:
198