自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(14)
  • 收藏
  • 关注

转载 opencv support armv7s

1.cd ~/<my_working_directory> 2.git clonegit://code.opencv.org/opencv.git 3.cd / 4.sudo ln -s /Applications/Xcode.app/Contents/Developer Developer 5.cd ~/<my_working_directiory> ...

2012-10-09 17:11:00 143

转载 the command lines in the linux

Start/Stop mysql: /etc/init.d/mysqld start /etc/init.d/mysqld stop /ect/init.d/mysqld restart 转载于:https://www.cnblogs.com/harveyding/archive/2012/09/27/2705152.html

2012-09-27 10:19:00 75

转载 Command lines in the mac

Show hide file(command line): defaults write com.apple.Finder AppleShowAllFiles TRUE killall Finder Hide hide file(command line): defaults write com.apple.Finder AppleShowAllFiles FALSE k...

2012-09-26 15:02:00 79

转载 删除文件夹里所有的.svn文件

sudo find "path" -name ".svn" -exec rm -rf {} \; 转载于:https://www.cnblogs.com/harveyding/archive/2012/06/06/2537882.html

2012-06-06 11:05:00 95

转载 统计Xcode项目代码行数

1、打开终端。 2、cd到你项目的路径。 3、输入下面的指令:grep -d recurse "\n"classes| wc -l 上面红色的部分是你代码的存放路径,如果你不是默认的Classes路径,改之。 转载于:https://www.cnblogs.com/harveyding/archive/2012/03/30/2425682.html...

2012-03-30 17:17:00 69

转载 iPhone silent mode detection

#import "AudioToolbox/AudioToolbox.h" - (void) ifSilentModeThenMessage { CFStringRef state; UInt32 propertySize = sizeof(CFStringRef); AudioSessionInitialize(NULL, NULL, NULL, NULL); ...

2011-06-30 10:26:00 157

转载 debug iphone

NSZombieEnabled YES MallocStackLoggingNoCompact 1 转载于:https://www.cnblogs.com/harveyding/archive/2011/04/08/2009604.html

2011-04-08 16:30:00 69

转载 跳转到应用的评论界面

itms-apps://ax.itunes.apple.com/WebObjects/MZStore.woa/wa/viewContentsUserReviews?type=Purple+Software&id=341086403 转载于:https://www.cnblogs.com/harveyding/archive/2011/02/16/1956209.html...

2011-02-16 16:31:00 143

转载 Update about ‘Error from Debugger: Unknown packet reply: “timeout” to environment packet.’ from Xcod...

出现这个出现这个问题:看看你的文件路径中是否包含#这样的自符 转载于:https://www.cnblogs.com/harveyding/archive/2010/10/12/1848834.html

2010-10-12 15:19:00 82

转载 为什么对象release掉后还需nil

当系统里某一软件里有一个对象release了。系统不会及时真正摸杀掉该对象,只是把该地址放回可使用的内存列表里。只有真得有内存分配请求才考虑是否使用这个地址,这样处理效率高。 转载于:https://www.cnblogs.com/harveyding/archive/2010/10/11/1847748.html...

2010-10-11 11:29:00 131

转载 Get iPhone App Version from Info.plist

[[NSBundle mainBundle] objectForInfoDictionaryKey:@”CFBundleVersion”] (It’s an NSString*.) 转载于:https://www.cnblogs.com/harveyding/archive/2010/09/30/1839563.html

2010-09-30 15:58:00 61

转载 UIButton在ipad设备上的异常

当iphone应用在ipad上运行时,设定button的image会在ipad上出现过度拉伸的现象,如改成backgroundimage就没问题了 转载于:https://www.cnblogs.com/harveyding/archive/2010/09/29/1838129.html...

2010-09-29 09:54:00 98

转载 data 转换 中文

NSStringEncoding strEncode = CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000); NSString *strReceive = [[NSString alloc] initWithData:receivedData encoding:strEncode]; ...

2010-08-13 16:49:00 150

转载 Change Company Name in Xcode

By default, Xcode inserts a company name something similar to the following in all new source files (.m .h etc): Copyright (c) 2009 MyCompanyName. All rights reserved. Changing this referen...

2010-08-13 10:15:00 97

空空如也

空空如也

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

TA关注的人

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