关于IOS 开发 中的一些小技巧

来源:互联网 发布:软件架构模式 pdf 编辑:程序博客网 时间:2024/05/22 02:09

如果你发现你update/install cocoa pods时 比较慢 可以试试如下代码

pod install –verbose –no-repo-update
pod update –verbose –no-repo-update

如果你tableviewCell 的分割线没有全屏幕
可以试试如下方法
这里写图片描述

*渐变色*

UIView *view = [[UIView alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 320.0f, 50.0f)];
CAGradientLayer *gradient = [CAGradientLayer layer];
gradient.frame = view.bounds;
gradient.colors = [NSArray arrayWithObjects:(id)[[UIColor whiteColor] CGColor], (id)[[UIColor blackColor] CGColor], nil];
[view.layer insertSublayer:gradient atIndex:0];

webView 适应屏幕 放大缩小

webView.scalesPageToFit = YES;

儿子:“老爸,刚才我路上不小心刮花了一辆兰博基尼,他要我陪2万块” 爸爸:“你真让人操心,我去哪里弄2万块来啊” 儿子:“是啊,所以我一气之下把他车砸了后,他要我陪500万” 爸爸:“你这逆子,把你卖了都赔不起呀” 儿子:“是啊,所以我一气之下,当众把车主捅死了” 爸爸:“你要气死老爸啊,看我不打死你!” 儿子:“老爸,刚才跟你开玩笑呢,我只是高考只考了168分,现在是不是比较容易接受了” 爸爸:“…”

0 0
原创粉丝点击