2015年1月14日

UIWebView

摘要: 加载网页//创建URLNSURL *url = [[NSBundle mainBundle] URLForResource:@”abc.html” withExtension:nil];//创建请求NSURLRequest *request = [NSURLRequest requestWithUR... 阅读全文

posted @ 2015-01-14 23:40 CXIOS 阅读(120) 评论(0) 推荐(0) 编辑

检查更新思路

摘要: 有新版本无新版本 阅读全文

posted @ 2015-01-14 10:04 CXIOS 阅读(122) 评论(0) 推荐(0) 编辑

UICollectionViewFlowLayout(流水布局)

摘要: UICollectionViewFlowLayout称为”流水布局”, 用来约束cell的显示常见属性 1. cell的尺寸@property (nonatomic) CGSize itemSize; 2. cell之间的水平间距 @property (nonatomic) CGFloat m... 阅读全文

posted @ 2015-01-14 09:54 CXIOS 阅读(444) 评论(0) 推荐(0) 编辑

UICollectionViewController的使用

摘要: 1. 注册cell(告诉collectionView将来要创建怎样的cell)[self.collectionView registerClass:[UICollectionViewCell class] forCellWithReuseIdentifier:@"product"];2. 从缓存池中... 阅读全文

posted @ 2015-01-14 09:49 CXIOS 阅读(165) 评论(0) 推荐(0) 编辑

导航