Description
The puzzle game of Sudoku is played on a board of N2 × N2 cells. The cells are grouped in N × N squares of N × N cells each. Each cell is either empty or contains a number between
1 a...
分类:
其他好文 时间:
2014-08-02 23:26:34
阅读次数:
344
iOS下用一行代码实现cell的parallax效果
兼容 tableview ,collectionview...
分类:
移动开发 时间:
2014-08-02 12:51:23
阅读次数:
231
其实有点失望,因为用google搜索“uitableviewcell dequeueReusableCellWithIdentifier”出来一堆堆资深博主的文章。看了看,大部分都是在解决一个问题:使用重用时cell显示混乱的问题。该问题本身并不让我失望,失望的是博主们的解释。首先,回顾一下UITa...
分类:
其他好文 时间:
2014-08-02 01:39:22
阅读次数:
247
@前些天写了一篇"秘密"的Cell效果文章,但是与在工作中想要的效果还是有差距,而且扩展性很不好,于是重写封装,把整体视图都放到scrollView中,基本是和secret app 一模一样的效果了.
@代码如下:(模糊效果的类就不写了,大家可以搜"UIImage+ImageEffects",还要导入Accelerate.framework)
1.MTSecretAp...
分类:
移动开发 时间:
2014-08-01 20:00:32
阅读次数:
297
最近要做一个项目,有个账户设置界面,看了微博、微信、QQ,他们的账号设置都比较原生态没做什么处理。春雨医生的账号不错,做了许多处理。不说废话直接上代码。第一步://UserTableViewCell.h这里定义第一种Cell#import @interface UserTableViewCell :...
分类:
移动开发 时间:
2014-08-01 13:34:01
阅读次数:
311
题目:Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where "ad....
分类:
编程语言 时间:
2014-08-01 02:20:41
阅读次数:
236
iOS开发UI篇—自定义瀑布流控件(蘑菇街数据刷新操作)一、简单说明使用数据刷新框架:该框架提供了两种刷新的方法,一个是使用block回调(存在循环引用问题,_ _weak),一个是使用调用。 问题:在进行下拉刷新之前,应该要清空之前的所有数据(在刷新数据这个方法中)。移除正在显示的cell:(1....
分类:
移动开发 时间:
2014-07-31 23:24:40
阅读次数:
351
对于数据是否该加载在Cell上时的判定建议使用if (nsMutableArryActivesTitles.count!=0){ ...........}元素个数存在,则数据一定存在。
分类:
其他好文 时间:
2014-07-31 20:00:17
阅读次数:
174
Given a 2D board and a word, find if the word exists in the grid.
The word can be constructed from letters of sequentially adjacent cell, where "adjacent" cells are those horizontally or vertically neighboring. The same letter cell may not be used more th...
分类:
其他好文 时间:
2014-07-31 17:16:57
阅读次数:
221
对于iOS的tableView的cell的分割线,一般我们很少使用不是系统默认的,但是有些项目要求还是要求我们去改变分割线的颜色或者外形以配合整个项目的色调。这个苹果公司早都为我们想到了。一、关于分割线的位置。 分割线的位置就是指分割线相对于tableViewCell.如果我们要根据要求调节其位置....
分类:
移动开发 时间:
2014-07-31 12:13:36
阅读次数:
287