notepad.cc笔记

学习笔记 祁庆男


6月25日
学习calayer 和 cashapelayer : http://www.th7.cn/Program/IOS/201407/232100.shtml
学习auto layout : http://stackoverflow.com/questions/25766747/emulating-aspect-fit-behaviour-using-autolayout-constraints-in-xcode-6
学习动画: http://blog.csdn.net/yanxiaoqing/article/details/7384339
--------------------------------------------------
6月26日
学习键盘 http://blog.csdn.net/ch_soft/article/details/6948119
学习指示器 http://blog.csdn.net/ch_soft/article/details/6948306
学习scrollview http://www.cnblogs.com/lovecode/p/3224514.html
--------------------------------------------------
6月27日
学习排版 : http://www.itnose.net/detail/6177538.html
--------------------------------------------------
6月29日
学习弹出一个view
--------------------------------------------------
6月30日
一个控制台私有方法 :po [self.searchBar recursiveDescription] 可以打印view的层级关系
学习动画facebook pop : http://www.cocoachina.com/industry/20140507/8339.html ||https://github.com/schneiderandre/popping
github上比较好的第三方库: http://blog.csdn.net/kepoon/article/details/39695729

[_tableView pop_removeAllAnimations];
POPSpringAnimation *anim = [POPSpringAnimation animationWithPropertyNamed:kPOPLayerScaleXY];
anim.springBounciness = 10;
anim.springSpeed = 20;
anim.fromValue = [NSValue valueWithCGPoint:CGPointMake(1.3, 1.3)];
anim.toValue = [NSValue valueWithCGPoint:CGPointMake(1.0, 1.0)];

POPBasicAnimation *opacityAnim = [POPBasicAnimation animationWithPropertyNamed:kPOPLayerOpacity];

opacityAnim.timingFunction = [CAMediaTimingFunction functionWithName:kCAMediaTimingFunctionEaseInEaseOut];
opacityAnim.duration = 0.3;
opacityAnim.toValue = @1.0;

[_tableView.layer pop_addAnimation:anim forKey:@"AnimationScale"];
[_tableView.layer pop_addAnimation:opacityAnim forKey:@"AnimateOpacity"];

-----------------------------------------------
7月2日
学习如何用autolayout布局tableviewcell : http://codingobjc.com/blog/2014/10/15/shi-yong-autolayoutshi-xian-uitableviewde-celldong-tai-bu-ju-he-ke-bian-xing-gao/
----------------------------------------------
7月3日
学习 QQ、微博、微信分享 https://open.weixin.qq.com/cgi-bin/showdocument?action=dir_list&t=resource/res_list&verify=1&id=1417694084&token=&lang=zh_CN
pop 锚点 http://stackoverflow.com/questions/29773487/how-to-change-the-starting-point-or-anchor-point-of-animations-using-pop-or-core
---------------------------------------------
7月14日
应用跳转itunes store策略 应用宝 安卓下载策略
--------------------------------------------
7月15日
一段lalabel排列的示例代码 http://code4app.com/ios/Tag-List/502883346803fa7b32000000
7月18日
https://github.com/maniak-dobrii/iOS-solutions
---------------------------------------------
8月20日
一个非常牛逼的图片测试地址
[NSString stringWithFormat:@"http://placehold.it/%fx%f&text=artcm",x,y]
实现购物车效果
http://www.it165.net/pro/html/201501/30896.html
---------------------------------------------
8月22日
一个值得一看的网站 ios安全类--
http://security.ios-wiki.com/
------------------------------------------
8月27日
一个牛逼的下拉动画制作方法
http://www.jackrabbitmobile.com/design/ios-custom-pull-to-refresh-control/
-----------------------------------------
8月31日
coredata版本升级
http://www.tuicool.com/articles/B3YNNj
------------------------------------------

11月25日
一个很牛逼的分析runloop的文章
http://www.cocoachina.com/ios/20150601/11970.html

2016/1/19 push动画
http://www.cocoachina.com/swift/20140822/9438.html

原文地址:https://www.cnblogs.com/qiqingnan/p/5143407.html