码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
ios UINavigationController 导航栏
1.关于导航栏左右两边的按钮 2.修改标题 //设置导航控制器标题的颜色和字体大小等 NSDictionary *attributes = [NSDictionary dictionaryWithObjectsAndKeys: [UIColor whiteColor],NSForegroundCol ...
分类:移动开发   时间:2017-03-27 10:46:18    阅读次数:496
UITableViewCell分隔线
// cell默认分隔线左边有间距,把left设为0就没了 tbv.separatorInset = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: 0) // 设置cell分隔线颜色 tbv.separatorColor = UIColor.red ...
分类:其他好文   时间:2017-03-24 17:39:10    阅读次数:148
UIWebView添加手势VS设置背景色
一.疑问?? 最近在使用UIWebView,发现好多小问题,现整理如下: 1.使用xib加载UIWebView控件时可以设置BackGroundColor但是无效 2.使用纯代码设置self.webView.backgroundColor = [UIColor redColor];无效 3.代码可实 ...
分类:Web程序   时间:2017-03-22 18:05:47    阅读次数:203
IOS 监听slider滑动
// 监听slider滑动 - (IBAction)valueChnage:(UISlider *)sender; @property (weak, nonatomic) IBOutlet NJView *circleView; @end @implementation NJViewControll... ...
分类:移动开发   时间:2017-03-21 23:01:39    阅读次数:1025
objective-C和C --- 《位运算》的使用之二进制颜色的转换(二)
为UIColor写个分类方法 //调用它 ...
分类:其他好文   时间:2017-03-14 22:38:58    阅读次数:192
UIcolor转UIImage
+ (UIImage *)imageWithColor:(UIColor *)color { CGRect rect = CGRectMake(0, 0, 1, 1); UIGraphicsBeginImageContext(rect.size); CGContextRef context = UI ...
分类:其他好文   时间:2017-03-13 12:44:32    阅读次数:134
iOS Button 设置AttributeString 在不同状态下自适应尺寸心得
描述下场景:button在不同的状态显示不同的title样式 比如normal 下 font是[UIFont systemFontOfSize:18.0f weight:UIFontWeightRegular] 颜色是 [UIColor blackColor] select 下 font 是[UIF ...
分类:移动开发   时间:2017-03-05 11:36:18    阅读次数:599
IOS UIButton常用属性
//1.添加按钮 UIButton *nameView=[UIButton buttonWithType:UIButtonTypeCustom]; //nameView.backgroundColor=[UIColor redColor]; [nameView setBackgroundImage:... ...
分类:移动开发   时间:2017-03-03 14:59:20    阅读次数:166
[Graphics] UIColor created with component values far outside the expected range, Set a breakpoint on UIColorBreakForOutOfRangeColorComponents to debug. This message will only be logged once.
用了别人的代码,一直总有一个报错,一开始没注意,最近项目快完期了,得处理下警告之类的东西, 后面发现之前那个大神代码是这样写的 援引:http://www.cnblogs.com/songxing10000/p/6297542.html ...
分类:其他好文   时间:2017-02-27 13:38:04    阅读次数:323
颜色常识
#import "ViewController.h" #import "UIColor+Hex.h" #define XMGColor(r,g,b) [UIColor colorWithRed:(r) / 256.0 green:(g) / 256.0 blue:(b) / 256.0 alpha:... ...
分类:其他好文   时间:2017-02-23 00:08:58    阅读次数:165
848条   上一页 1 ... 10 11 12 13 14 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!