cocoa520.com
404 Not Found!
http://www.cocoa520.com/404.html
cocoa520.com
Mac OS中显示及隐藏文件和文件夹的方法
http://www.cocoa520.com/实用技巧/2014/04/26/Show-and-hide-files-and-folders-in-the-Mac-OS.html
Defaults write com.apple.finder AppleShowAllFiles -bool true KillAll Finder 或者 defaults write com.apple.finder AppleShowAllFiles YES KillAll Finder. Defaults write com.apple.finder AppleShowAllFiles -bool false KillAll Finder. Defaults write com.apple.finder AppleShowAllFiles NO KillAll Finder. 方法二 利用命令 chflags hidden 可以隐藏文件或文件夹。 文件路径 或 chflags hidden 文件夹路径既可。 在网上还发现有一个可以隐藏文件及文件夹的开源工程,提供了一个带界面的程序,可以方便不会使用命令行的用户,地址是 https:/ code.google.com/p/hideme4mac/. Chflags could not modify the flags for. Schg, schan...
cocoa520.com
Cocoa520
http://www.cocoa520.com/index.html
cocoa520.com
Archives
http://www.cocoa520.com/archives.html
All posts is here. (12 posts.).
cocoa520.com
如何判断CFArray中对象的类类型
http://www.cocoa520.com/cocoa/2014/08/11/How-to-determine-CFArray-in-object-of-class-type.html
cocoa520.com
读漫画中国式项目管理总结
http://www.cocoa520.com/项目管理/2014/08/12/Read-comics-Chinese-project-management.html
最近公司项目管理交流会议分享了一本项目管理类的书,书名为 漫画中国式项目管理 ,挺有趣的,一看书名,我们就知道,这肯定又是一本通俗类的抒理书籍,类似 大话设计模式。 项目经理应该不能再把自己定位成一个技术专家,而因更加关注业务与管理,必须学会从业务角度思考问题,而不仅仅是技术实现,心里面要非常清楚 客户 老板 为什么要花钱做这个事. 很多项目的失败都和项目需求或多或少有关,比如需求变更,需求模糊等 ,分析项目的需求,一定要从业务层面切入,多问几个为什么,清楚客户的真正目的,讨论清楚不明确的需求,量化需求,然后论证项目的可行性,把需求落地,最后找真正的Sponsor 有决定权的人 确认需求,避免不谈清楚就做事。
anselz.com
Xcode5 制作Framework | Anselz's Blog
http://www.anselz.com/2014/05/10/xcode5-制作framework
Mac OS X 扩展了 Framework. 一个 Framework 同时也是一个 Bundle. 模板选择 “Cocoa Touch Static Library”. 3清理工程无用文件 Target 、 PersionFramework、 PersionFrameworkTests. A Architectures 改为 Standard architectures armv7, armv7s 根据需要修改. B在 Deployment 下,将 Mac OS X Deployment Target 改为 Compiler Default ,将 Targeted Device Family 改为需要的,此处改成了 iPhone/iPad ,同时可以根据需要修改 iOS Deployment Target ,此处改为了 iOS 7.1 (更具需求来,你需要支持到 最低系统版本. D Packaging 中,将 Wrapper Extention 改为 framework :. E修改 Info,将 Bundle OS Type Code 改为 FMWK Framework. Warning: (ar...
cocoa520.com
Cocoa如何Test一个可执行文件
http://www.cocoa520.com/cocoa/2014/08/10/Cocoa-how-to-Test-an-executable-file.html
File Mini 输出- Mini: Mach-O 64-bit executable x86 64. Mdls是全称是lists the metadata attributes for the specified file,专门用来查看文件属性的,功能很强大,系统Finder也是用得它。 从kMDItemContentType = public.unix-executable 中可以判断它的类型。
anselz.com
typedef 函数指针 | Anselz's Blog
http://www.anselz.com/2014/06/24/typedef-函数指针
在C语言中我们都知道typedef的意思 简单来说就是给复杂的东西取别名 提高代码的可阅读性,具体详情见 WIKI. Int (*func point)(int);. 定义一个函数指针 返回值为int类型 指针名叫func point 有一个int类型参数. Int func(int num) ;. Func point = func;. Typedef int (*FUNC POINT)(int);. FUNC POINT func point = NULL;. App Extensions之NotificationCenter(Today) →. Recky Lin's Blog.
anselz.com
xcode | Anselz's Blog
http://www.anselz.com/category/xcode
在日常开发中,常常需要Daily Build 如果每天都手动来岂不是很麻烦,要是能系统自动打包就好,此blog…. 昨天凌晨苹果WWDC 2014发布了Xcode 6 现在是面向开发者的Beta版本 现在就来探索下Xcode …. Mac OS X 扩展了 Framework 的功能,让我们能够利用它来共享代码和资源。 问题一 -all load 是在Objective-C 编译时常用到的一个参数,比如这篇文章所介绍的,生成静…. Recky Lin's Blog.