假如你有一个值为@”0A5CEA” (字符串类型的16进制色值) ,可以如下方法创建UIColor对象:UIColor *color = [UIColor colorwithHexString:@"0A5CEA" alpha:.9];UIColor Category然后我们来创建一个UIColor ...
分类:
其他好文 时间:
2014-06-25 23:21:06
阅读次数:
361
1.若从服务器返回的颜色字符串数据为 hexColor:"09B57A"hexColor分为三部分:09、B5、7A 分别对应三色值 R、G、B十六进制十进制000011......0990A100B11......0F15101611171218......1F31...FF255代码如下: 1 ...
分类:
移动开发 时间:
2014-06-19 08:03:02
阅读次数:
330
swift是一门新语言,相关的文档资料现在基本上还不是很完整。在尝试开发过程中,走了不少弯路。在这里记录一下自己的”路“,希望以后能少走弯路。生成随机背景颜色使用的语法和C#或者JAVA基本一致。UIView.backgroundColor = UIColor其中UIView是在设备上显示出来的从U...
分类:
其他好文 时间:
2014-06-18 13:36:57
阅读次数:
208
let btn1 = UIButton.buttonWithType(.System) as UIButtonbtn1.backgroundColor = UIColor.redColor()btn1.setTitle("Button1", forState: UIControlState.Norm...
分类:
其他好文 时间:
2014-06-18 13:02:14
阅读次数:
141
[self.navigationItem
setLeftBarButtonItem:leftButton]; 这样设置在ios7上按钮默认是蓝色
解决方法:
leftButton.tintColor = [UIColor
whiteColor];...
分类:
移动开发 时间:
2014-06-18 07:07:37
阅读次数:
888
最近用code写了些view上的渐变效果,使得app的UI特效不必全部依赖美工出的图片。
效果如下:
主要用到了Layer上的渐变层,核心代码如下,关于CALaer的使用可参考
//Transparent Gradient Layer
- (void) insertTransparentGradient {
UIColor *colorOne = [UIColor color...
分类:
其他好文 时间:
2014-06-14 14:51:32
阅读次数:
275
??1. ckeditor(ckeditor插件标签)1.1. 参数属性名类型描述是否必须默认值namestring属性名称是nullvaluestring默认值否nullisfinderboolean是否加载ckfinder是truetypestring其它属性(用法: height:400,uiColor:'#9AB8F3' 用,分割)否null 1.2. 用法"name" isfinder=...
分类:
其他好文 时间:
2014-06-14 13:27:21
阅读次数:
269
自定义webview背景色 重点是把webview弄成透明的
然后把self.view的背景调色即可UIWebview 背景透明处理让 UIWebView
背景透明需要以下设置web_about.backgroundColor = [UIColor clearColor];web_about.opa...
分类:
Web程序 时间:
2014-06-04 17:23:59
阅读次数:
291
主要的原理包括:
继承UIView ,重载drawrect和重载触摸事件
待实现的功能还有,路径数组保存等。
#import "testdrow.h"
@implementation testdrow
UIColor *pick_color;
int choose;
UIBezierPath *mpath ;
UIBezierPath *eraser_path;
NSTimer *myt...
分类:
移动开发 时间:
2014-06-03 00:20:36
阅读次数:
323
//16进制颜色(html颜色值)字符串转为UIColor+(UIColor *)
hexStringToColor: (NSString *) stringToConvert{ NSString *cString =
[[stringToConvert stringByTrimmingCh...
分类:
移动开发 时间:
2014-05-26 08:43:21
阅读次数:
207