Kingyeung Chan

THINK GREAT THOUGHTS AND YOU WILL BE GREAT

大家好,我系Monster.Chan,一名来自中国的 iOS / AWS / Unity3D 开发者,就职于SAINSTORE。在不断修炼,努力提升自己


结合工作经验,目前写了《Getting Started with AWS》、《Websites & Web Apps on AWS》,欢迎试读或者购买

Bug_Note

在Coding肯定会遇到各种奇葩的bug,今天就遇上了,适当汇总一些还是有必要的。这章节以后不断增加。

UICollectionViewFlowLayout有点关的

the behavior of the UICollectionViewFlowLayout is not defined because:the item 
height must be less that the height of the UICollectionView minus the section insets top and bottom values.  

解决的方法

self.automaticallyAdjustsScrollViewInsets = NO;  
最近的文章

iOS Mantle使用小记

Mantle简介Mantle是github的工程师们弄出来的东西,是iOS和Mac平台下基于Objective-C编写的一个简单高效的模型层框架。 Mantle能做什么当我们从服务器获取数据,这些数据一般都为JSON格式,我们常用的做法是将JSON数据转为Model对象,然后我们就从Model对象的属性里读取数据。 也许你已经体会到这时噩梦的开始,因为你每次都要用-initWithDictionarty:(NSDictionary *)dict等类似方法来初始化,把JSON数据里的值一...…

继续阅读
更早的文章

Xcode 7.1菜单中不显示Alcatraz的解决办法

先执行,这一步是把所有的插件都加上Xcode 7.1的DVTPlugInCompatibilityUUID find ~/Library/Application\ Support/Developer/Shared/Xcode/Plug-ins -name Info.plist -maxdepth 3 | xargs -I{} defaults write {} DVTPlugInCompatibilityUUIDs -array-add defaults read /Applicatio...…

继续阅读