APPLE提供了三种storyboard segue的方式:push,modal,custom . push segue是系统预定义的跳转方式, 为了使其能正常工作,我们还必须加载UINavigationController。 有时候,我们不想看到UINavigation bar,我们可以使用m.....
分类:
移动开发 时间:
2014-08-01 13:04:11
阅读次数:
315
题目: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
现在很多的Android程序都在标题栏上都显示了一些按钮和标题,这里尝试做个实例在onCreate中添加://自定义标题requestWindowFeature(Window.FEATURE_CUSTOM_TITLE);setContentView(R.layout.main);//设置标题为某个l...
分类:
移动开发 时间:
2014-07-31 20:19:47
阅读次数:
208
对于数据是否该加载在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
mkisofs -r -J -V Beini-Custom -v --boot-info-table --boot-load-size 4 -b boot/isolinux/isolinux.bin -c boot/isolinux/boot.cat -o ../beini.iso beinisee...
分类:
系统相关 时间:
2014-07-31 12:59:06
阅读次数:
478
最近重新做了一下系统,在安装和使用svn过程中遇到了一些问题,记下备忘.第一次安装好系统之后,安装VisualSVN遇到报错:Custom action InstallWMISchemaExcute failed: Cannot query proxy blanket: No suchinterfa...
分类:
其他好文 时间:
2014-07-31 12:51:56
阅读次数:
216
对于iOS的tableView的cell的分割线,一般我们很少使用不是系统默认的,但是有些项目要求还是要求我们去改变分割线的颜色或者外形以配合整个项目的色调。这个苹果公司早都为我们想到了。一、关于分割线的位置。 分割线的位置就是指分割线相对于tableViewCell.如果我们要根据要求调节其位置....
分类:
移动开发 时间:
2014-07-31 12:13:36
阅读次数:
287
在Excel中选择要复制的区域,“复制”后在剪切板中的Text形式内容是以Tab分隔的。要实现“粘贴”的功能,只需要获取剪切板中文本,然后根据换行“\n”得到每行数据,再将行根据“\t”分割得到对应Cell中的数据,赋值给Td中的Element。这个过程重点是js如何访问到剪切板的内容。在IE浏览器...
分类:
Web程序 时间:
2014-07-31 02:35:25
阅读次数:
235