效果:
collectionView的数据源方法
- (UICollectionViewCell *) collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath
*)indexPath
{
newsCell *cell = [collectionVi...
分类:
其他好文 时间:
2015-07-24 14:27:18
阅读次数:
114
CATransition *animation = [CATransition
animation];
[animation
setDuration:0.2f];
[animation
setTimingFunction:[CAMediaTimingFunction
functionWithName:kCAMediaTimingFunctionEaseIn]];
[an...
分类:
其他好文 时间:
2015-07-24 14:25:38
阅读次数:
108
习惯了Linux下命令行配置网络的简洁,在windows系统下是不是感觉很别扭?下面分享几个方便的命令操作。
释放地址
ipconfig /release "Local Area Connection 1"
重新获取地址
ipconfig /renew "Local Area Connection 1"
配置IPv6单播地址
netsh interface ipv6 add/del address...
Table of Contents
RPC通信功能实现
配置参数调用方法
RPC通信功能实现
HBase的RPC通信功能主要基于Protobuf和NIO这两个组件来实现,在通信管道上选择的是protobuf对外声明的BlockingRpcChannel(阻塞式),其callBlockingMethod方法决定了客户端与服务端的交互行为,比如采用什么样的方...
分类:
其他好文 时间:
2015-07-24 14:27:12
阅读次数:
196
collectionView中只有三个cell 每次显示的都是第二个cell
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath
*)indexPath {
CycleViewCell *ce...
分类:
其他好文 时间:
2015-07-24 14:26:35
阅读次数:
123
php默认不打印错误,如需打印,vi $PHP_HOME/etc/php.ini, 修改以下几项:display_errors = On
error_reporting = E_ALL & ~E_NOTICE如果有设error_log变量,注释掉输出到error_log这句话就可以将错误直接显示在terminal了然后重启php:$PHP_HOME/sbin/php-fpm start...
分类:
Web程序 时间:
2015-07-24 14:24:32
阅读次数:
128
迷宫问题
Time Limit: 1000MS
Memory Limit: 65536K
Total Submissions: 10936
Accepted: 6531
Description
定义一个二维数组:
int maze[5][5] = {
0, 1, 0, 0, 0,
0, 1, 0, 1, 0,
...
分类:
其他好文 时间:
2015-07-24 14:26:07
阅读次数:
125
最近学习了牛腩新闻发布系统,里面提到了SQL注入,以前也有了解过,但是一直很模糊,现在终于将它整理了一下,在这里与大家分享。...
分类:
数据库 时间:
2015-07-24 14:24:25
阅读次数:
159
移动应用在处理网络资源时,一般都会做离线缓存处理,其中以图片缓存最为典型,其中很流行的离线缓存框架为SDWebImage。
但是,离线缓存会占用手机存储空间,所以缓存清理功能基本成为资讯、购物、阅读类app的标配功能。
今天介绍的离线缓存功能的实现,主要分为缓存文件大小的获取、删除缓存文件的实现。
获取缓存文件的大小
由于缓存文件存在沙箱中,我们可以通过NSFileMana...
分类:
移动开发 时间:
2015-07-24 14:23:52
阅读次数:
136
Find a way
Time Limit: 3000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)
Total Submission(s): 6157 Accepted Submission(s): 2052
Problem Description
Pass a year lea...
分类:
其他好文 时间:
2015-07-24 14:22:52
阅读次数:
116
网站是 电影之家,
前前后侯花了半年的时间(但真正的开发时间应该是不到一个月的,涉及技术(webmagic,SSI框架,阿里云服务,mysql,freeMarker,bootStrap3.0,Jquery)),
因为平常要上班,周末又想多休息。所以搞了那么久。
网站中运用到的技术就是标题上的那些,还有一些小的东西可能我都忘记了。
建站也是第一次,所以从申请域名 ,备案,购买服务器,上传代码...
分类:
数据库 时间:
2015-07-24 14:25:09
阅读次数:
215
Search a 2D Matrix II
Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:
Integers in each row are sorted in ascending from lef...
分类:
其他好文 时间:
2015-07-24 14:23:37
阅读次数:
109
1.头部布局文件top.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/tit...
分类:
微信 时间:
2015-07-24 14:22:10
阅读次数:
236
每一次比赛的时候脑子都卡顿,
这次更离谱,我竟然二进制枚举边,这么大的复杂度,并且剪不了枝
后来学长说着是道爆搜,搜每一条边,恍然大悟。
只需要剪掉点的度数是奇数的时候,或者他的线上朋友或线下朋友大于等于度数的1/2时候的枝,
跑了15ms#include
#include
#include
using namespace std...
分类:
其他好文 时间:
2015-07-24 14:23:23
阅读次数:
96
前言
ios设备的尺寸越来越多,针对一款app可能要适配到多种设备,多种尺寸。所以,我们期望我们的app能够autoLayout。本文主要介绍在Xcode中使用constraint。未来会不定期对此文进行更新。
约定
本文中view指代从Objuect Library中拖拽出来的各种view
基础
一个view在界面显示,至少有三种决定条件
一、自身大小:如...
分类:
移动开发 时间:
2015-07-24 14:24:06
阅读次数:
173
1.头部布局文件top.xml:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="40dp"
android:background="@drawable/tit...
分类:
微信 时间:
2015-07-24 14:23:24
阅读次数:
337