您的位置:首页 > 移动开发 > IOS开发

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

2015-09-22 17:11 459 查看

如果你发现你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分,现在是不是比较容易接受了” 爸爸:“…”
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息