//在viewDidLoad方法中创建Toolbartoolbar = [[UIView
alloc] initWithFrame:CGRectMake(0, 0, 320, 66)];toolbar.backgroundColor =
[UIColor redColor];//添加到tableVi...
分类:
移动开发 时间:
2014-05-26 13:29:07
阅读次数:
207
#import
@interface UIColor (RandomColor)
+(UIColor *) randomColor;
@end
#import "UIColor+RandomColor.h"
@implementation UIColor (RandomColor)
+(UIColor *) ...
分类:
移动开发 时间:
2014-05-09 13:57:22
阅读次数:
477
- (UIColor *)colorAtPixel:(CGPoint)point {
// Cancel if point is outside image coordinates
if (!CGRectContainsPoint(CGRectMake(0.0f,
0.0f, self.size.width,
self.size.height), point)) {...
分类:
移动开发 时间:
2014-05-09 01:04:12
阅读次数:
503
inline static UIColor* getColorFromHex(NSString *hexColor)
{
if (hexColor == nil) {
return nil;
}
unsigned int red, green, blue;
NSRange range;
range.length = 2;
...
分类:
移动开发 时间:
2014-05-07 11:48:26
阅读次数:
327
首先,我先说说怎样自定义导航控制器。
1.自定义导航控制器需要新建一个类继承UINavigationController。如图:
2.在initialize方法中,自定义一些属于自己的navigationBar的一些东西。比如:颜色,文字,适配IOS7等等...
/**
* 初始化(每一个类只会调用一次)
*/
+ (void)initialize
{
[UIColor...
分类:
其他好文 时间:
2014-05-06 22:32:33
阅读次数:
356
x向右为正,y向下为正
1.y
UILabel *label=[[UILabel
alloc] initWithFrame:CGRectMake(40,
40, 250,
50)];
label.backgroundColor=[UIColor
clearColor];
label.textColor=[UIColor
redColor];
label...
分类:
其他好文 时间:
2014-05-06 21:10:50
阅读次数:
341
CKEDITOR.editorConfig = function( config )
{
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.filebrowserBrowseUrl = '/CKEditorAndCKFinder/ckfinder/ckfinder.html' ;
config.fi...
分类:
其他好文 时间:
2014-04-30 22:21:39
阅读次数:
366
在iOS7中,UIView新增了一个属性tintColor.这是一个UIColor,被使用在UIView中改变应用程序的外观的。默认tintColor的值为nil,这表示它将会运用父视图层次的颜色来进行着色。如果父视图中没有设置tintColor,那么默认系统就会使用蓝色。因此,可以通过设置root...
分类:
其他好文 时间:
2014-04-30 14:30:22
阅读次数:
403