自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(19)
  • 资源 (29)
  • 收藏
  • 关注

转载 归档

NSArray *myArray1;NSArray *myArray2;NSMutableString *tmpStr;NSMutableString *string1;NSMutableString *string2;NSMutableString *string3;NSData *buffer;string1 = [NSMutableString strin

2012-03-31 16:14:30 221

原创 dic 深度复制???

NSDictionary *dic = [[NSDictionary alloc] initWithObjectsAndKeys:                         [NSMutableString stringWithString:@"firstValue"],@"first",                         [NSMutableString string

2012-03-31 15:53:58 670

原创 NSString 测试

NSString *text0 = [[NSString alloc] initWithCString:"abcdef0"];                   //text0 ,text1,text2,text3,text6,text7 各自有指向的内存。    NSString *text1 = [[NSString alloc] initWithCString:"abcdef0"]

2012-03-31 09:42:38 277

转载 ios 设计

http://peixun.eol.cn/company/company_article_detail.php?articleid=17657  10个迷惑新手的Cocoa, Objective-c开发难点和问题因为有自己的软件要开发,所以我只能忙里偷闲过来接着写这篇教程。大家莫怪。请按上面的最后更新时间算。原文地址http://lianxu.me/blog/201

2012-03-31 00:02:33 271

转载 破 解

http://peixun.eol.cn/company/company_article_detail.php?articleid=17657

2012-03-30 23:55:34 193

转载 破解

http://peixun.eol.cn/company/company_article_detail.php?articleid=17657

2012-03-30 23:55:14 334

转载 objectc-c 内存

http://kb.cnblogs.com/a/2284690/  在我的理解来说: 对象(object)即一块内存,本文要探讨的是一个Objective-C对象在内存的布局(layout)问题,水果的官方文档有说,一个类(class)如果不需要从NSObject继承其某些特定的行为是不用继承NSObject的,这里我将讨论限制在继承了NSObject的类的对象范围内。首先来看一下,NSO

2012-03-30 17:56:08 1433

原创 Ios 消息处理

1 ,系统接收event 事件,发送给UIApplication实例,UIApplication调用sendEvent 发送给UIWindow是,UIWindows调用Sendevent 发送给event 第一处理者。event 通过 [event allTouches] 获得要传递的第一响应者。2  第一响应者获得消息后 沿着消息处理链 流动,直到UIApplicatio

2012-03-30 09:49:58 1016

原创 autorelease

autorelease 对象  在urlRequest 发出后,但在finished 前就遇到 pool 池释放。。

2012-03-29 11:36:49 258

翻译 GCD 学习 记录

派发源 的创建  及 派发源启用,挂起,取消。Creates a new dispatch queue to which blocks can be submitted  queue  用于提交代码快。void InstallSignalHandler(){   // Make sure the signal does not terminate the a

2012-03-28 14:37:51 481

转载 CFReadStream

static void ReadStreamClientCallBack(CFReadStreamRef readStream, CFStreamEventType type, void *clientCallBackInfo){    NSLog(@"call Back");    UInt8 buffer[1024*40];        NSInteger bytesRe

2012-03-27 09:56:55 1444

原创 ASIHTTP 代码品

Boolean CFReadStreamSetClient(CFReadStreamRef stream, CFOptionFlags streamEvents, CFReadStreamClientCallBack clientCB, CFStreamClientContext *clientContext);注册stream  感兴趣的streamEvents  的CFReadSt

2012-03-26 10:40:17 1215

转载 google 天气 xml 解析

NSString *weatherRequestUrlStr = [NSString stringWithFormat:                                      @"http://www.google.com/ig/api?hl=zh-cn&weather=%@",                                      [@"上海" s

2012-03-22 18:38:24 437

原创 排序方法

// sort.cpp : Defines the entry point for the console application.//#include "stdafx.h"void sort(int numArr[],int n){ for(int i =0;i {  for(int j = 0;j  {   if(numArr[j] >numArr[j+1]

2012-03-18 00:18:59 177

原创 创建,查询,单向链表

#include using namespace std;struct Node{ Node *next; int number;};//创建单向链表Node * create(int n)      { Node *head = NULL,*p1 = NULL,*p2 = NULL; for(int i=0;i {  p2 = new No

2012-03-17 09:41:58 234

原创 http wrap

https://github.com/nfarina/webrequest https://github.com/lukhnos/LFWebAPIKithttps://github.com/AFNetworking/AFNetworkinghttps://github.com/ShareKit/ShareKit     //分享数据 到facebook twitte

2012-03-14 22:29:54 359

转载 NSURlConnect outtime

NSMutableURLRequest *request = [NSMutableURLRequest requestWithURL:[NSURL URLWithString:@"http://www.baidu.com"]];    NSLog(@"default time out %f(GET)", request.timeoutInterval);    request.timeoutInt

2012-03-14 20:01:25 374

转载 网盘

真是不用不知道,金山快盘太方便啦!文档、照片,只要放在快盘里面,姑且不说自动同步不怕丢失,电脑、手机、iPad想啥时候看就啥时候看!你还没用,真是太遗憾啦!力荐啊,亲!http://www.kuaipan.cn/index.php?ac=account&op=register&channel=k5vj55

2012-03-13 20:06:45 281

原创 apple 参考地址

苹果并发操作https://developer.apple.com/library/ios/#documentation/General/Conceptual/ConcurrencyProgrammingGuide/Introduction/Introduction.html#//apple_ref/doc/uid/TP40008091https://developer.apple

2012-03-06 13:11:50 347

最新ida7.2.zip

ida反汇编逆向资源,亲测有效果,ida7.2 windows 版本,带key。

2019-06-24

BurpSuitV1.7.17 Cracked

亲测有效!

2017-04-20

linux内核注解

linux 内核注解,难得赵老出来,给大家讲解,解剖linux。

2012-08-01

脚本小子攻防

脚本攻防,比较老了,不过学习基本思路还是不错的。

2012-08-01

IDA 使用教程

大名鼎鼎的IDA,使用也比较复杂,看看也不错。

2012-08-01

美化 iOS 手机

iOS 美化

2012-06-05

俄罗斯方块2

改进了些bug 以后有时间再改吧 总弄这个也不好

2012-05-18

俄罗斯方块

旋转数组,这个是我这个俄罗斯方块的特点吧。

2012-05-17

iphone kvo code

iphone kvo code 迟早都要看的吧。

2012-05-15

缓存图片库 demo

iphone 图片缓存 测试可以用。SDWebImage。

2012-05-11

mac下看图工具

苹果电脑下看图工具,默认的经常打不开。

2012-05-11

还原iphone图片

iphone 图片还原,测试通过可以的。

2012-05-09

iphone 连连看

学习一周ios能够做出这个

2012-02-03

简洁GBK UTF-8 UNICODE 转换工具

开发时,涉及到语言编码时,特别方便。。。小巧方便,实用。

2012-01-31

object-c grammer

好多官方语法解释在此。如synthesize 用法。

2012-01-31

网络通讯程序方便自己学习

网络通讯 程序 方便自己 学习。。。。。。

2011-07-18

最强悍的 sqlite 查看工具

用过4,5个sqlite查看工具,这个是最方便,功能强大。又小。

2011-06-16

C 游戏编程高手实践

一些关于C的游戏编程代码,好好学习吧,全免费提供。

2010-11-01

Microsoft.Programming.Applications.for.Microsoft

windows下编程的经典好书。免费哦,不要钱的喔。。。。。

2009-07-11

TMGBusUpdConfCallBohr121604final

TMGBusUpdConfCallBohr121604finalTMGBusUpdConfCallBohr121604final

2008-08-27

程序员必读index程序员必读indexv

程序员必读index程序员必读index程序员必读index

2008-08-27

linux0.11代码linux0.11代码linux0.11代码

本来这里是有了的。可是要8分的积分,我发了八分买下来了,没钱了,就要一个资源分吧!

2008-08-27

英文的sun的x86汇编手册

英文的sun的x86汇编手册英文的sun的x86汇编手册英文的sun的x86汇编手册

2008-08-26

linux windows下的nasm 手册

学习NASM,很好的资料喔!!!linux windows下的nasm

2008-08-26

AT&T汇编语言与GCC内嵌汇编简介

AT&T汇编语言与GCC内嵌汇编简介AT&T汇编语言与GCC内嵌汇编简介AT&T汇编语言与GCC内嵌汇编简介AT&T汇编语言与GCC内嵌汇编简介

2008-08-25

简介明了的汇编查询器!

简介明了的汇编查询器!自己查到的,拿来共享下 ,是黑影的,

2008-08-25

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除