码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
ios20--xib2
故事板控制器: xib对应的类: ...
分类:移动开发   时间:2017-09-03 14:56:23    阅读次数:201
UIImagePickerController导航字体颜色和背景
创建UIImagePickerController //设置导航栏背景颜色 picker.navigationBar.barTintColor = HexRGB(0x4294FE); //设置右侧取消按钮的字体颜色 picker.navigationBar.tintColor = [UIColor ...
分类:其他好文   时间:2017-08-29 12:43:01    阅读次数:247
ios遮罩层的简单使用
/** 大图 */ - (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
iOS 富文本
// NSFontAttributeName 设置字体属性,默认值:字体:Helvetica(Neue) 字号:12 // NSForegroundColorAttributeNam 设置字体颜色,取值为 UIColor对象,默认值为黑色 // NSBackgroundColorAttributeN ...
分类:移动开发   时间:2017-08-19 12:53:08    阅读次数:276
Swift开发教程--设置UIViewController的背景透明
非常easy的一句代码 self.view.backgroundColor = UIColor.clearColor() 由此联想开来,非常多的控件想设置为背景透明都能够用UIColor.clearColor() 非常easy的一句代码 self.view.backgroundColor = UIC ...
分类:编程语言   时间:2017-08-12 10:19:05    阅读次数:180
(一二〇)CALayer的一些特性
1.每一个View都自带一个CALayer,称为rootLayer,layer能够和实现与View一样的显示功能,可是它不继承UIResponse,也就是说它无法处理事件,所以为了处理事件还是要用View,假设仅仅是显示,能够选择layer。 以下的代码实现了自己定义一个layer加入到控制器的ro ...
分类:其他好文   时间:2017-08-04 19:30:00    阅读次数:146
iOS 设置字体为渐变色
方法类 引用 ...
分类:移动开发   时间:2017-08-04 15:22:54    阅读次数:284
loadNibNamed:(NSString *)name owner:(nullable id)owner options:(nullable NSDictionary *)options用法
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
iOS 获取图片某一点的颜色对象(UIColor*)。
- (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
848条   上一页 1 ... 5 6 7 8 9 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!