码迷,mamicode.com
首页 >  
搜索关键字:uicolor    ( 848个结果
Masonry 一个约束第三方类库
Masonry这个东东相当相当的牛掰,牛掰在哪呢,好用,相当的简单容易用。不愧为2000多个赞的第三方。来让我们看看具体用法。UIView *gr = UIView.new; gr.backgroundColor = [UIColor greenColor]; UIView *re = ...
分类:其他好文   时间:2014-10-29 01:51:23    阅读次数:184
背影图
UIView *view = [[UIView alloc]initWithFrame:CGRectMake(50, 200, 100, 100)]; view.backgroundColor = [UIColor redColor]; view.layer.shadowOpacity = 0......
分类:其他好文   时间:2014-10-25 19:59:28    阅读次数:235
颜色的赋值(新奇写法)
//写法比较新奇 UIColor *bgColor =[UIColor redColor]; self.view.backgroundColor = bgColor;
分类:其他好文   时间:2014-10-25 18:36:41    阅读次数:158
字体颜色,
NSDictionary * dict=[NSDictionary dictionaryWithObject:[UIColor whiteColor] forKey:NSForegroundColorAttributeName]; self.navigationController.naviga.....
分类:其他好文   时间:2014-10-23 14:13:20    阅读次数:142
如何去掉tableView多余分割线
在对应的控制器添加以下方法即可- (void)setExtraCellLineHidden: (UITableView *)tableView{ UIView * view = [UIView new]; view.backgroundColor = [UIColor clearColo...
分类:其他好文   时间:2014-10-22 00:32:58    阅读次数:130
UIWebView 设置背景为透明
UIWebView的背景如何设置成为透明? [webview setBackgroundColor:[UIColor clearColor]]; [webview setOpaque:NO]; 两句代码搞定,UITabView方法也是这样!...
分类:Web程序   时间:2014-10-21 15:31:53    阅读次数:176
PHP中CKEditor和CKFinder配置
1、/ckeditor/config.js, 配置文件,如果不想写太多,可以直接写好默认配置(语言,菜单栏,宽度),有需要可以百度config配置config.language = ‘en’;config.skin = ‘v2’;config.uiColor = ‘#AADC6E’;config.t...
分类:Web程序   时间:2014-10-20 18:53:41    阅读次数:232
画直线
方法一(推荐):使用CALayerCALayer *middleBorder = [CALayer layer];middleBorder.frame = CGRectMake(x, y, width, height);middleBorder.backgroundColor = UIColor.C...
分类:其他好文   时间:2014-10-19 16:49:32    阅读次数:241
swift中的类拓展 extension
以添加颜色为例,new 一个swift文件夹 不是cocoa类 也不需要继承什么。然后 1 import UIKit 2 3 protocol ColorDalegate{ 4 class func mainColor(Void) -> UIColor 5 } 6 7 extension...
分类:编程语言   时间:2014-10-16 18:27:12    阅读次数:226
iOS 更改导航栏背景颜色
ios7以下的版本设置导航栏背景颜色可以使用 [[UINavigationBar appearance] setTintColor:[UIColor orangeColor]]; ios7以后: [[UINavigationBar appearance] setBarTintColor:[UIColor orangeColor]]; 默认带有一定透明效果,可以使用以下方法去...
分类:移动开发   时间:2014-10-16 15:46:25    阅读次数:176
848条   上一页 1 ... 73 74 75 76 77 ... 85 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!