上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 97 下一页

2016年10月1日

Java 8 VM GC Tunning Guide Charter 5

摘要: 第5章 Available GC The Java HotSpot VM includes three different types of collectors, each with different performance characteristics. Java虚拟机有三种不同类型的gc, 阅读全文

posted @ 2016-10-01 00:17 🌞Bob 阅读(244) 评论(0) 推荐(0) 编辑

Java 8 VM GC Tuning Guide Charter3-4

摘要: 第三章 Generations One strength of the Java SE platform is that it shields the developer from the complexity of memory allocation and garbage collection. 阅读全文

posted @ 2016-10-01 00:17 🌞Bob 阅读(228) 评论(0) 推荐(0) 编辑

Java 8 VM GC Tunning Guide Charter 6

摘要: 第六章 并行GC The Parallel Collector The parallel collector (also referred to here as the throughput collector) is a generational collector similar to the 阅读全文

posted @ 2016-10-01 00:16 🌞Bob 阅读(233) 评论(0) 推荐(0) 编辑

Java 8 VM GC Tunning Guide Charter 7-8-b

摘要: 第七章 并发gc Java 8提供两种并发gc,CMS和G1 Concurrent Mark Sweep (CMS) Collector This collector is for applications that prefer shorter garbage collection pauses 阅读全文

posted @ 2016-10-01 00:11 🌞Bob 阅读(224) 评论(0) 推荐(0) 编辑

Java 8 VM GC Tunning Guild Charter 9-b

摘要: 第九章 G1 GC The Garbage-First (G1) garbage collector is a server-style garbage collector, targeted for multiprocessor machines with large memories. It a 阅读全文

posted @ 2016-10-01 00:09 🌞Bob 阅读(307) 评论(0) 推荐(0) 编辑

2016年9月30日

java文档 第十一章 其他考量-b

摘要: Finalization 和弱引用、软引用、虚引用 Finalization and Weak, Soft, and Phantom References Some applications interact with garbage collection by using finalization 阅读全文

posted @ 2016-09-30 23:59 🌞Bob 阅读(220) 评论(0) 推荐(0) 编辑

2016年9月28日

两行代码搞定UITableView无数据无网络显示-b

摘要: 不知是否有像我一样的,每次写TableView在监听网络和无数据源时逻辑处理提示视图都是一堆代码,很繁琐也很重复的垃圾代码(可能就只有我这样😂,求大神推荐一个好的框架给小弟使用),于是最近闲来无事决定封装一下,有不足的地方希望大家指出,一同进步。 本次监听网络状态依赖于`Reachability` 阅读全文

posted @ 2016-09-28 21:06 🌞Bob 阅读(950) 评论(0) 推荐(0) 编辑

iOS点击cell查看大图,点击大图还原小图-b

摘要: 一、项目需求 用collectionView展示很多照片,点击某个照片,用全屏scrollView无限循环的方式查看图片。点击放大的图片,图片缩小到原先的尺寸。 如图gif1.gif所示,点击中间的图片,放大图片,滑动图片。再点击大图,图片回到相应的位置。 gif1.gif 如图gif2.gif所示 阅读全文

posted @ 2016-09-28 21:06 🌞Bob 阅读(639) 评论(0) 推荐(0) 编辑

让CALayer的shadowPath跟随bounds一起做动画改变-b

摘要: 在iOS开发中,我们经常需要给视图添加阴影效果,最简单的方法就是通过设置CALayer的shadowColor、shadowOpacity、shadowOffset和shadowRadius这几个属性可以很方便的为 UIView 添加阴影效果。但是如果单用这几个属性会导致离屏渲染(Offscreen 阅读全文

posted @ 2016-09-28 21:05 🌞Bob 阅读(679) 评论(0) 推荐(0) 编辑

升级iOS10之后调用摄像头/麦克风等硬件程序崩溃闪退的问题

摘要: 在升级到iOS10之后, 开发过程中难免会遇到很多的坑, 下面是一些常见的坑, 我做了一些整理, 希望对大家开发有帮助: &1. 调用视频,摄像头, 麦克风,等硬件程序崩溃闪退的问题: 要注意的问题 iOS10 对隐私权限的管理更为严格 ,比如访问的摄像头、麦克风等硬件,都需要提前请求应用权限、允许 阅读全文

posted @ 2016-09-28 21:02 🌞Bob 阅读(1752) 评论(0) 推荐(0) 编辑

上一页 1 ··· 17 18 19 20 21 22 23 24 25 ··· 97 下一页

导航