最终效果图:
自定义cell的封装
BeyondCell
//
// BeyondCell.h
// 29_仿微信聊天
//
// Created by beyond on 14-9-4.
// Copyright (c) 2014年 com.beyond. All rights reserved.
//
#import
@class Beyo...
分类:
微信 时间:
2014-09-04 22:21:10
阅读次数:
488
Base64加密是常用的加密算法,在IOS的Des加密算法中已经使用到了Base64算法,还是单独整理出来吧。Base64.h文件//// Base64.h// Copyright (c) 2014年 grant. All rights reserved.//#import @interfa...
分类:
移动开发 时间:
2014-09-04 22:07:10
阅读次数:
383
之前因为要使用DES加密,在网上找了好多,总于找到了,整理如下。Des.h文件//// Des.h// Copyright (c) 2014年 grant. All rights reserved.//#import #import @interface Des : NSObject//DE...
分类:
移动开发 时间:
2014-09-04 22:05:40
阅读次数:
318
//// main.m// TestVar2//// Created by lishujun on 14-9-4.// Copyright (c) 2014年 lishujun. All rights reserved.//#import @interface Address : NSObj...
分类:
其他好文 时间:
2014-09-04 18:30:09
阅读次数:
212
1. [代码][C/C++]代码 服务端://// main.m// server//// Created by mac on 13-4-15.// Copyright (c) 2013年 mac. All rights reserved.//#import #import #import #imp...
分类:
编程语言 时间:
2014-09-04 16:40:49
阅读次数:
207
1. [代码][C/C++]代码 /** Copyright (c) 2011, Jim Hollinger* All rights reserved.** Redistribution and use in source and binary forms, with or without* mod...
分类:
其他好文 时间:
2014-09-04 16:40:09
阅读次数:
259
对结构体内存清零:#include #include struct STU{ int id; char sex;};int main(){ struct STU s1; memset(&s1 , 0 , sizeof(s1));}结构体内存对齐:以结构体最长的类型对齐#include #includ...
分类:
其他好文 时间:
2014-09-04 01:21:57
阅读次数:
312
OC第三方框架-AFN的使用//// ViewController.m// AFN断点续传演练//// Created by apple on 13-7-30.// Copyright (c) 2013年 Jackie. All rights reserved.//#import "View...
分类:
其他好文 时间:
2014-09-03 14:55:16
阅读次数:
241
C/C++内存对齐参考资料:http://wenku.baidu.com/view/8eaaa26925c52cc58bd6bed2.html一、什么是字节对齐,为什么要对齐? 现代计算机中内存空间都是按照byte划分的,从理论上讲似乎对任何类型的变量的访问可以从任何地址开始,但实际情况是在访...
分类:
编程语言 时间:
2014-09-03 12:40:06
阅读次数:
229
HashMap.java源代码:/** Copyright (c) 1997, 2010, Oracle and/or its affiliates. All rights reserved.* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to.....
分类:
编程语言 时间:
2014-09-03 12:37:16
阅读次数:
307