Mac
文章平均质量分 55
chuanyituoku
这个作者很懒,什么都没留下…
展开
-
Using Dynamic Libraries(Updating)
Linkage:https://developer.apple.com/library/mac/documentation/DeveloperTools/Conceptual/DynamicLibraries/100-Articles/UsingDynamicLibraries.html#//apple_ref/doc/uid/TP40002182-SW10When you n翻译 2013-12-26 17:23:42 · 641 阅读 · 0 评论 -
Mac SavePanel 保存文件的GUI代码
Mac OS X Save Panel 使用代码亲测可用原创 2014-08-07 16:30:29 · 1109 阅读 · 0 评论 -
BSD Socket~TCP~Example Code
可运行与Mac上的 TCP协议的 BSD Socket 代码记录下,以便以后用到原创 2014-07-30 08:44:14 · 1309 阅读 · 0 评论 -
BSD Socket~UDP~Code examples
在Mac机器上 BSD Socket UDP协议实现代码可模拟QQ信息发送原创 2014-07-30 08:38:35 · 1197 阅读 · 0 评论 -
Types of Background Processes (OS X)
There are four types of background processes in OS X. The differences are summarized inTable 1-1(page 9)and described in detail in the following subsections. To select the appropriate type of back转载 2014-06-12 17:28:00 · 485 阅读 · 0 评论 -
运行(Command Line Tool)Terminal App,并且返回输出结果
- (NSString *)runCommand:(NSString *)commandToRun{ NSTask *task; task = [[NSTask alloc] init]; [task setLaunchPath: @"/bin/sh"]; NSArray *arguments = [NSArray arrayWithObjects:原创 2014-07-16 13:13:14 · 1867 阅读 · 0 评论 -
加载和卸载内核扩展 Mac
ddXcode在编写和构建内核扩展方面非常强大,但她却无法测试和调试内核扩展;Mac OS X上的内核扩展程序可以通过下列两种方式中的任意一种进行加载:A:将内核扩展程序包(如HwlloWorld.kext)复制到 /System/Library/Extensions 目录下自动加载(重启?或者硬件插入电脑时候)原创 2014-04-13 18:19:38 · 6840 阅读 · 1 评论 -
Mac里面如何设置自启动服务
Link:http://blog.csdn.net/startexcel/article/details/7065153如果你使用Macports等包管理器安装时,会自动帮你写入一个plist文件到/Library/LaunchDaemons/xxxxxx.plist,随后执行sudo port load redis类似这样的命令即可启动,并开机自动启动。在Mac里转载 2014-03-05 23:40:13 · 973 阅读 · 0 评论 -
iOS 越狱之后,沙盒安全保护机制就被完全移除了吗?
Link:http://www.zhihu.com/question/22380248很多人有误解,所以我问了这个问题,写了这个回答:iOS 越狱不代表沙盒(sandbox)的移除,至少现在的越狱方案都不会做这样的傻事(不同的越狱方案对沙盒会有所不同的影响)。但可以肯定:通过 App Store 渠道下载安装(在路径 /var/mobile/Applications/转载 2014-03-05 23:55:38 · 1228 阅读 · 0 评论 -
CocoaPods+AFNetworking
CocoaPods is a dependency manager for Objective-C, which automates and simplifies the process of using 3rd-party libraries like AFNetworking in your projects.地址:https://github.com/AFNetworking/A转载 2014-02-13 15:29:09 · 775 阅读 · 0 评论 -
通过NSTask用Cocoa执行perl脚本
Link:http://blog.csdn.net/love_gaohz/article/details/8153977本文将用一个例子帮助你理解如何使用NSTask,例子通过在Cocoa中执行一个perl脚本,实现去掉给定NSString中的所有HTML标签。 这里是一个简单的perl脚本,文件名是stripper.pl,功能是去掉所有HT转载 2014-01-20 10:50:51 · 1035 阅读 · 0 评论 -
24种语言执行外部命令的方法
在这个例子中展示用不同语言调用外部命令的方法。觉得这个挺有意思,转来给大家看看,也许某一天你会觉得有用。这些语言包括AdaAppleScriptCC++C#EForthHaskellIDLJJavaLogoMAXScriptObjective-COCamlPerlPHPPop11PythonRavenR转载 2014-01-20 11:04:21 · 599 阅读 · 0 评论 -
Mac OS X Xcode的Connection没有反应?
在GUI设置事件的时候,Ctrl从FileOwner连到原创 2014-08-08 13:35:16 · 601 阅读 · 0 评论