自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

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

转载 code sign

https://developer.apple.com/library/ios/documentation/IDEs/Conceptual/AppDistributionGuide/SubmittingYourApp/SubmittingYourApp.html#//apple_ref/doc/uid/TP40012582-CH9-SW1

2014-05-26 07:15:17 459

转载 证书介绍

主页 / 构建 Adobe AIR 应用程序 / 对 AIR 应用程序进行签名对 AIR 文件进行数字签名代码签名证书关于 AIR 代码签名关于 AIR 发行商标识符关于证书格式时间戳获取证书示例:从 Thawte 获取 AIR 开发人员证书更改证

2014-05-25 01:03:07 1338

转载 苹果多线程问题

Technical Note TN2109Simple and Reliable Threading with NSOperationThreads are a great way to solve a number of tricky problems. For example, if you have some long-running computation to do, y

2013-06-08 20:16:49 1499

转载 svn 无法提交问题

find troublesome_folder -name .svn -exec rm -rf {} \;

2012-06-11 14:46:56 360

转载 pop 到任意层

UINavigationController popToViewController可以指定UINavigationController跳转到某一个指定UIViewController控制器[self.navigationController popToViewController:[self.navigationController.viewControllers obj

2012-06-08 16:49:18 619

转载 读取本地图片

-(void)selectManyPhotos{   ALAssetsLibrary *library = [[ALAssetsLibraryalloc] init];        dispatch_async(dispatch_get_main_queue(), ^                   {                      N

2012-06-06 15:04:48 491

转载 边框设置

UIImageView *imageView = [[UIImageViewalloc] initWithFrame:CGRectMake(50,50, 100, 100)];    imageView.image = [UIImageimageNamed:@"qipao1.png"];        imageView.layer.borderWidth =10;

2012-06-04 15:22:45 265

原创 代码 TabBar Navgation

UIViewController *viewController2 = [[UIViewControlleralloc] init];    UINavigationController *navController2 = [[UINavigationControlleralloc] initWithRootViewController:viewController2];

2012-06-04 14:49:30 311

原创 github 库记录

https://github.com/beetlebugorg/PictureMe  脸部识别https://github.com/sergiomtzlosa/faceWrapper-iphonehttps://github.com/ole/OBShapedButton      不规则按钮https://github.com/mattdonnelly/MDAudi

2012-05-22 09:57:24 290

转载 播放wav声音

static int i = 0;    NSString *path;    if(i%2==0)    {        path = [NSString stringWithFormat:@"%@%@",[[NSBundle mainBundle] resourcePath],@"/soundNumber.wav"];    }    else    {

2012-05-21 15:33:55 318

原创 URLConnection

#import @interface URLRequest : NSObject {    id _delegate;        SEL _action;    NSString *_xml;    NSMutableData *responseData;    NSMutableURLRequest *request;    NSURLConnection

2012-05-18 16:55:57 374

转载 地址

http://oa.chinasoftosg.com:8888/

2012-05-17 17:07:26 491

转载 旋转数组

int a[4][4];    int b[4][4];    int k=1;    int i,j;        for(i=0; i    {        for(j=0; j        {            a[i][j] = k++;            printf("%8d ", a[i][j]);            //

2012-05-16 10:33:24 221

原创 kvo

- (void)viewDidLoad {    [super viewDidLoad];    [self addObserver:self forKeyPath:@"name" options:(NSKeyValueObservingOptionNew |NSKeyValueObservingOptionOld) context:nil];    self.name = @"wan

2012-05-15 15:11:31 208

转载 字符串 取变量

转自 http://www.cocoachina.com/bbs/read.php?tid=102887@interface ViewController : UIViewController{    NSString *a1;    NSString *a2;    NSString *a3;}@end- (void)viewDidLoad{

2012-05-15 10:14:52 331

原创 气泡屏保

- (void)viewDidLoad {    [super viewDidLoad];    self.ballArray = [[NSMutableArray alloc] init];    [ballArray release];    for(int i =0;i    {        BubbleView *bubble = [[BubbleView all

2012-05-15 09:37:49 693

原创 时间 精确 到毫秒

NSDateFormatter *formatter = [[NSDateFormatter alloc] init];    formatter.dateFormat = @"yyyy-MM-dd HH:mm:ss.SSS";    NSString *begin = [formatter stringFromDate:[NSDate date]];    NSLog(@"begin

2012-05-14 10:39:23 18924

转载 图片还原

http://www.macupdate.com/app/mac/29611/iphonepngapp

2012-05-09 16:21:06 469

原创 解决 黑色背景问题

#import @interface CustomerViewController : UIImagePickerController {    UIToolbar *hortoolBar;    UIToolbar *vertoolBar;    UIImageView *vBackView;    //垂直方向银色背景    UIImageView *hBackVi

2012-05-09 15:00:46 586

原创 自定义照相机

#import @interface CustomerViewController : UIImagePickerController {    UIToolbar *hortoolBar;    UIToolbar *vertoolBar;    }@property (nonatomic,retain) UIToolbar *hortoolBar;@prop

2012-05-07 08:36:48 432

原创 willAnimateFirstHalfOfRotationToInterfaceOrientation 为什么没调用????

wThe default implementation of this method does nothing. If you override this method, you should not override either the willAnimateFirstHalfOfRotationToInterfaceOrientation:duration: or willAnimateSe

2012-05-04 14:36:03 862

原创 开源库

https://github.com/enormego/EGOTableViewPullRefreshhttps://github.com/enormego/EGOImageLoadinghttps://github.com/enormego/EGOCache)

2012-05-03 11:27:15 335

转载 中文 转 拼音

////  ChineseToPinyin.h//  LianPu////  Created by shawnlee on 10-12-16.//  Copyright 2010 lianpu. All rights reserved.//#import @interface ChineseToPinyin : NSObject {    }

2012-05-02 14:35:14 23547

原创 代码收集

https://github.com/haqu/tweejump  cocoa   开源游戏ABC123 is an interesting game for iPhone, iPod touch and iPad."Simple in concept. Brilliantly addictive. Maddeningly challenging." – TheYosh

2012-05-02 09:22:05 958

转载 代码资源

搞了好久的ios开发,过程遇到各种各样的问题,基本都是靠百度+google,然后下载别人的开源代码来研究,下面列出一些常逛的ios开源代码网站,分享一下。cocoacontrols.com 收集了很多UI控件效果代码,缺点是需要翻墙,而且代码分类不够好。code4app.com,国内有个类似的,大部分代码来自github,但是做了中文翻译和效果截图,支持搜索,比较好用。缺点是代码还没有

2012-04-28 17:48:55 310

原创 不错blog

http://www.cnblogs.com/iphone520

2012-04-28 17:25:50 257

原创 imageView 添加手势失败原因

imageView = [[UIImageView alloc] initWithFrame:CGRectMake(8, 8, 200, 200)];    imageView.image = [UIImage imageNamed:@"d_citypick.png"];    imageView.userInteractionEnabled = YES;        [self

2012-04-28 14:17:03 2772

翻译 可变行距

https://github.com/Tuszy/MTLabel

2012-04-27 10:39:34 318

原创 淡出效果

imageView = [[UIImageView alloc] initWithFrame:CGRectMake(0, 0, 1024, 768)];        imageView.image =  [iBabyPubFunction ImageName:@"DefaultDay.png" IsPublic:NO Role:ROLE_UNKNOW];        image

2012-04-26 16:43:54 247

原创 缩放

////  PinchView.m//  ViewDemo////  Created by wgd on 12-4-25.//  Copyright 2012 __MyCompanyName__. All rights reserved.//#import "PinchView.h"#import @implementation PinchView

2012-04-25 17:16:47 378

转载 pbxuser

*.mode1v3*.pbxuser  这些文件,和项目代码没多大关系,和窗口布局,显示位置相关。  且包含断点信息转载自http://stackoverflow.com/questions/2373046/xcodeproj-filesup vote3down vote favorite share [g+] share

2012-04-24 17:41:46 933

转载 svn

SVN: How to resolve a conflict tutorialPosted by Charleson August 10, 2010 Leave a comment (4)Go to commentsThis tutorial is walkthough on how to resolve a conflict in svn (subversion)Firs

2012-04-24 16:54:03 913

转载 ip

58.251.159.110:8080123.12.12.18

2012-04-24 11:28:36 192

转载 快速 打开模拟器文件夹 和去影藏

open /Users/wgd/Library/Application\ Support/iPhone\ Simulator/4.3/Applications                      快速打开模拟器文件夹 open /Users/wgd/Library/Application\ Support/iPhone\ Simulator/4.3/Media/DCIM/10

2012-04-24 10:17:58 853

原创 CustomLable

#import @interface CustomerLable : UILabel {    NSMutableAttributedString *mutaString;}@property (nonatomic,retain) NSMutableAttributedString *mutaString;- (NSAttributedString *)

2012-04-23 14:37:05 655

原创 UILable 库

https://github.com/AliSoftware/OHAttributedLabelUILabel是经常使用的一种控件,iOS上的UILabel已经能很好满足一些需求。比如设置对齐方式,换行模式等等。但如果需求是需要一串字符中不同的字符颜色,字体都单独设置,UILabel就无法满足了。那就自己来做个富文本Label好了。先创建继承UILabel的Attrib

2012-04-23 09:43:54 2555

原创 移动图片

-(void)chooseRect{        float newX=0,newY=0;    CGRect newFrame;    newX = sourceView.frame.origin.x + endPoint.x-beginPoint.x;    newY = sourceView.frame.origin.y + endPoint.y-beginPoint.

2012-04-19 09:35:05 413

原创 截取 视图 部分 图片

/*      * begin      * 可以通过下边这段代码实现将myView中的图像抓取并保存成文件      */      UIGraphicsBeginImageContext(photoBackGround.frame.size); //@ 这里的myView可以换成其他的View,都可以得到这个View里的图像      CGContextRef cont

2012-04-19 08:37:26 293

原创 UIPinchGestureRecognizer

http://stackoverflow.com/questions/5647084/limit-maximum-scale-for-scaling-image-with-pinch-gesture-in-ios http://stackoverflow.com/questions/3406179/uipinchgesturerecognizer-zoom-out-zoom-in

2012-04-17 21:53:03 409

原创 图形api 函数解释

CGContextRef context = UIGraphicsGetCurrentContext(); // 获取图形环境CGContextSaveGState(context);       //保存图形环境到堆栈CGContextTranslateCTM(context, 0, rect.size.height);  //重新设置坐标点  原本点是 左下角(0,0)CGCont

2012-04-13 17:54:51 519

最新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

Oauth 认证

iphone 下的微博开放平台授权方式总结。

2012-02-17

iphone 连连看

学习一周ios能够做出这个

2012-02-03

简洁GBK UTF-8 UNICODE 转换工具

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

2012-01-31

c++ 最新标准

搞 c++ 的少不了要看这个最新技术标准。搞其他的也可以借鉴借鉴。

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关注的人

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