Grapher - Change how graphs look
摘要:【Change how graphs look】 Pan and zoom the graph 工具条如下: Change the type of graph 开场的Graph Template在Menu中也可调出。 也可通过菜单进行2D、3D模型的转换。 Change a...
阅读全文
Grapher
摘要:【Grapher】 You use Grapher to visualize and analyze implicit and explicit equations. You can graph equations as two– or three–dimensional graphs, and ...
阅读全文
Mac 下输入特殊字符
摘要:【Mac 下输入特殊字符】 快捷键是 Control + Commans + Space
阅读全文
Yosemite 给 iOS 录屏
摘要:【Yosemite 给 iOS 录屏】 Mac 升级到Yosemite后,支持iOS屏幕录制。把Mac和iPhone用数据线相连。打开QuickTime Player,新建一个影片。 从摄像头源中选择自己iPhone即可。
阅读全文
xcode添加build phase
摘要:【xcode添加build phase】 xcode版本:5.0.2,找了半天,终于找到add build phase的方法,如下图。
阅读全文
Mac设置Root密码
摘要:【Mac设置Root密码] Mac系统重新设置root用户密码 如果不知道root用户密码,需要重设。 命令[sudo passwd root ] 然后提示你输入当前登录用户密码,通过以后, 提示你输入两遍root的密码。 这样你就设置好root帐号密码了,可以用root来登录MacOS了。参考:http://www.2cto.com/os/201306/219035.html
阅读全文
从Mac的Finder中访问你的iCloud文档
摘要:【从Mac的Finder中访问你的iCloud文档】 从OS X 10.7.2开始,iCloud就深入Mac当中,我们也可以在Finder中访问储存在iCloud中的文件,甚至当你拥有多台Mac的时候你还可以利用这些隐藏文件夹来进行文件同步。而iOS与OS X也是可以配合iCloud同步,相信iCloud未来还会开放更多的功能。当你是OS X Lion 10.7.2以及之后的10.7版本,还有 Mountain Lion,用户的话,你只需配置好iCloud账户,即可通过下面的方法通过Finder访问你的iCloud文档:1、在Finder窗口中,按+Shift+G 前往文件夹,输入路径:...
阅读全文
SpringBoard
摘要:【SpringBoard】 Springboard, orHome Screen, is the standard application that manages theiOShome screen. Other tasks include starting WindowServer, launching and bootstrapping applications and setting some of the device's settings on startup. Onjailbroken devices, unsigned applications (application
阅读全文
MacTerminal快捷键
摘要:【MacTerminal快捷键】在Mac系统中并没有Home、End等键,所以在使用时并不是特别的顺手,但是有几个键位组合可以使Terminal的操作更加灵活方便。1、将光标移动到行首:ctrl + a2、将光标移动到行尾:ctrl + e3、清除屏幕: ctrl + l4、清除当前光...
阅读全文
MacOSX快捷键
摘要:【MacOSX快捷键】 关闭显示器:Shift + Ctrl + 退出键 休眠:Command + Option + 退出键 关机:Ctrl + Option + Command + 退出键 打开文件:Command + O
阅读全文
open File Browser in shell
摘要:【maxosx】1 open /usr/include【ubuntu】 发现三个,如下: xdg-open xxxx.pdf gnome-open . nautilus . 喜欢把它alias一下 .bashrc alias openpdf='xdg-open' alias nautilus='opendir' 转自:http://dongyulong.blog.51cto.com/1451604/426694
阅读全文
禁止ImageCapture自动启动
摘要:【禁止ImageCapture自动启动】 打开ImageCapture,点开左下角菜单,把Connecting this iPhone opens:的内容改为以下选项即可。
阅读全文
Mach-O Objc信息导出
摘要:【Mach-O Objc信息导出】1、__DATA,__objc_selrefs 类型:SEL,指向 __TEXT,__objc_methname 中的数据长度:len(section)/len(SEL)注意:对于一个包含objc类信息的bundle,在bundle加载时,objc-runtime会把此bundle中的selrefs改写为指向__TEXT,__objc_methname中的数据。若该seg中数据不存在,存在在堆中新建一个字符串。简而言就是bundle中的selrefs不能指向自己的__TEXT seg。节省内存。2、__DATA,__objc_classlist &&a
阅读全文
what is stubs?
摘要:【what is stubs?】 A stub is a small program routine that substitutes for a longer program, possibly to be loaded later or that is located remotely. For example, a program that uses Remote Procedure Calls (RPC) is compiled with stubs that substitute for the program that provides a requested procedure.
阅读全文
x86 enter&leave 指令
摘要:【x86 enter&leave 指令】 1、Enter的作用相当==push ebp和mov ebp,esp 2、Leave的作用相当==mov esp,ebp和pop ebp 参考:http://blog.csdn.net/zhangxinrun/article/details/5888425
阅读全文
x86_64 Assembler Calling Convention
摘要:【x86_64 Assembler Calling Convention】 1、x86_64 registers (r8-r15follow the same convention.) Theripregister is the instruction pointer register which points to the instruction being executed. 2、x86_64寄存器特性表 3、特性要点: 1)常用寄存器有16个,分为x86通用寄存器以及r8-r15寄存器。 2)通用寄存器中,函数执行前后必须保持原始的寄存器有3个:是rbx、rbp、rsp。r...
阅读全文
dlopen之mode参数详解
摘要:【dlopen之mode参数详解】 1、mode参数可以设置2方面内容,导出符号范围与绑定时间。 2、导出符号范围,为以下2值。基本上来说,App每次加载dylib,都应该以RTLD_LOCAL来打开dylib。 3、绑定行为,为以下2值。基本上说来,App都应该以RTLD_LAZY来绑定,RTLD_NOW以在调度时有价值。
阅读全文
dylib如何导出C++Class
摘要:【dylib如何导出C++Class】 1、C++类成员函数必须为virtual。因为virtual函数在编译期会转换成偏移,偏移是可以跨平台的。而非virtual函数,则会直接通过符号去寻找,各个平台编译器对C++函数名符号的改写规则并不一致,可能导致找不到符号的情况。 2、必须提供工厂函数。因为
阅读全文
mac之dylib类型
摘要:【mac之 dylib类型】 1、dependent library Adependent library, from the client’s point of view, is a dynamic library the client is linked with. Dependent libraries are loaded into the same process the client is being loaded into as part of its load process. For example, when an app is launched, its depende.
阅读全文
build objc4 runtime
摘要:【build objc4 runtime】 1、Get the latest objc4 project codes from www.opensource.apple.com. 2、Open the projetct, compile it, you will get compile error. 3、you need some file to complete the compilation. 1) Create Directory: /tmp/objc.dst/usr/include 2) from libauto project, get auto_zone.h. Put it i..
阅读全文