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
在对应的控制器添加以下方法即可- (void)setExtraCellLineHidden: (UITableView *)tableView{ UIView * view = [UIView new]; view.backgroundColor = [UIColor clearColo...
分类:
其他好文 时间:
2014-10-22 00:32:58
阅读次数:
130
UIWebView的背景如何设置成为透明?
[webview setBackgroundColor:[UIColor clearColor]];
[webview setOpaque:NO];
两句代码搞定,UITabView方法也是这样!...
分类:
Web程序 时间:
2014-10-21 15:31:53
阅读次数:
176
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
以添加颜色为例,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
ios7以下的版本设置导航栏背景颜色可以使用
[[UINavigationBar appearance] setTintColor:[UIColor orangeColor]];
ios7以后:
[[UINavigationBar appearance] setBarTintColor:[UIColor orangeColor]];
默认带有一定透明效果,可以使用以下方法去...
分类:
移动开发 时间:
2014-10-16 15:46:25
阅读次数:
176