软件名:ColorSnappe目前我用的时1.1.0版本该工具可以利用alt+command+c快捷键拾取颜色,拾取后可以自动把颜色代码放入剪切板 。我最喜欢它可以生成ios开发的代码,比如选择了ios rgb模式后可以直接生成形如[UIColor colorWithRed:0.137 green:...
分类:
其他好文 时间:
2014-08-10 15:17:20
阅读次数:
341
UIColor blackColor];[UIColor darkGrayColor];[UIColor lightGrayColor];[UIColor grayColor];[UIColor cyanColor];[UIColor magentaColor];[UIColor purpleCol...
分类:
移动开发 时间:
2014-08-10 12:56:10
阅读次数:
207
1.颜色转变成图片- (UIImage*)createImageWithColor:(UIColor*)color{CGRectrect =CGRectMake(0.0f,0.0f,1.0f,1.0f);UIGraphicsBeginImageContext(rect.size);CGContext...
分类:
移动开发 时间:
2014-08-08 21:01:26
阅读次数:
283
#import [self.content.layer setBackgroundColor:[[UIColor whiteColor] CGColor]]; [self.content.layer setBorderColor:[[UIColor grayColor] CGColor]]; ...
分类:
其他好文 时间:
2014-08-07 22:41:05
阅读次数:
209
先看一下效果图:
用如下代码,想弹出一个模态窗口,设置它的背景透明度为0.5,却发觉prsent后的背景色变为黑色的。
ShareVC *share = [[ShareVC alloc] init];
[self presentViewController:share animated:YES completion:nil];
起初还以为是设置透明度或者是[UIColor clear...
分类:
其他好文 时间:
2014-08-05 22:41:00
阅读次数:
339
设置UITextField的placeholder颜色 UIColor *color = [UIColor blackColor]; textField.attributedPlaceholder = [[NSAttributedString alloc] initWithString:@"密码"....
分类:
移动开发 时间:
2014-08-05 13:54:59
阅读次数:
216
在application: application didFinishLaunchingWithOptions: launchOptions 加入下面代码就可以实现对tabbar的颜色的修改
//设定Tabbar的点击后的颜色
[[UITabBar
appearance] setTintColor:[UIColor
redColor]];
//设定Ta...
分类:
移动开发 时间:
2014-08-01 13:37:31
阅读次数:
248
//设置一个viewview = [[UIView alloc] initWithFrame:CGRectMake(0, 38, 320, 30)];view.backgroundColor = [UIColor lightGrayColor];[self.view addSubview:view]...
分类:
移动开发 时间:
2014-08-01 12:51:11
阅读次数:
254
#define WDWBaseURL @"http://192.168.1.1/" //字符串#define TOWERTabBarItemTitleOffset UIOffsetMake (0, -3) //点#define WDWFontColor3d3d3d [UIColor colorWit...
分类:
移动开发 时间:
2014-08-01 12:43:41
阅读次数:
253
//16进制颜色(html颜色值)字符串转为UIColor
+(UIColor *) hexStringToColor: (NSString *) stringToConvert
{
NSString *cString = [[stringToConvert stringByTrimmingCharactersInSet:[NSCharacterSet whites...
分类:
其他好文 时间:
2014-07-30 17:44:54
阅读次数:
231