04 2016 档案

摘要:1.终端输入: 如果放在了应用程序里,就是这个: defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID 如果放在了别的地方,比如用户根目录: defaults read ~/Xcode.app/C 阅读全文
posted @ 2016-04-29 07:33 Ficow 阅读(154) 评论(0) 推荐(0) 编辑
摘要:/** * 当前用户是管理员的时候,直接启动应用程序 * 如果不是管理员,则使用启动对象启动程序,以确保使用管理员身份运行 */ //获得当前登录的Windows用户标示 //URL:http://www.bianceng.cn/Programming/cshar... 阅读全文
posted @ 2016-04-26 21:13 Ficow 阅读(1637) 评论(0) 推荐(0) 编辑
摘要:1.this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; 2.Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; 3.Application.Exit 阅读全文
posted @ 2016-04-26 18:38 Ficow 阅读(684) 评论(0) 推荐(0) 编辑
摘要:顺便附上 MacDown的官网,我觉得MacDown挺好用的,推荐给大家! #一级标题 ##二级标题 ###三级标题 ####四级标题 #####五级标题 ######六级标题 *** ###使用分割线 *** ###使用*加空格 来使用无序列表 * 1 * 2 * 3 *** ###用数字加.加空 阅读全文
posted @ 2016-04-25 17:02 Ficow 阅读(1185) 评论(0) 推荐(0) 编辑
摘要:if(MessageBox.Show("message", "title", MessageBoxButtons.OKCancel,MessageBoxIcon.Question,MessageBoxDefaultButton.Button2) == DialogResult.OK) { MessageBox.Show("c... 阅读全文
posted @ 2016-04-24 21:15 Ficow 阅读(341) 评论(0) 推荐(0) 编辑
摘要:using System.Text.RegularExpressions; 阅读全文
posted @ 2016-04-24 21:14 Ficow 阅读(10680) 评论(0) 推荐(1) 编辑
摘要:OpenFileDialog fd = new OpenFileDialog(); fd.Filter = "txt files (*.txt)|*.txt|All files(*.*)|*.*"; fd.InitialDirectory = Application.StartupPath + "\\Temp\\"; fd.... 阅读全文
posted @ 2016-04-24 21:13 Ficow 阅读(1026) 评论(0) 推荐(0) 编辑
摘要:打开终端,输入: 阅读全文
posted @ 2016-04-21 21:47 Ficow 阅读(3281) 评论(0) 推荐(0) 编辑
摘要:esc:显示/隐藏自动补全弹出框。Tab:接受代码自动完成Ctrl+F/B 前移/后移光标Ctrl+P/N 上一行/下一行Ctrl+D 删除光标右边的字符Ctrl+K 删除本行Com+Ctrl+Y 继续运行(Debugging)Command + / :注释/取消注释代码 Command + [ 或 阅读全文
posted @ 2016-04-21 21:46 Ficow 阅读(220) 评论(0) 推荐(0) 编辑
摘要:在block中常常会用到self,可是会造成循环引用。这时候就需要这样来解决这个问题: 阅读全文
posted @ 2016-04-15 14:57 Ficow 阅读(241) 评论(0) 推荐(0) 编辑
摘要:draw default shape draw custom shape draw round rect draw nCorner star draw flower use coordinate 阅读全文
posted @ 2016-04-14 22:43 Ficow 阅读(395) 评论(0) 推荐(0) 编辑
摘要:Associated Objects: Swizzling: 阅读全文
posted @ 2016-04-12 19:25 Ficow 阅读(208) 评论(0) 推荐(0) 编辑
摘要:1. 2. 阅读全文
posted @ 2016-04-12 15:56 Ficow 阅读(496) 评论(0) 推荐(0) 编辑
摘要:The singleton pattern is useful for creating objects that are shared across the entire application, such as an HTTP client or a notification manager, 阅读全文
posted @ 2016-04-10 20:30 Ficow 阅读(162) 评论(0) 推荐(0) 编辑
摘要:参考资料:http://nshipster.com/c-storage-classes/ 阅读全文
posted @ 2016-04-10 20:27 Ficow 阅读(5050) 评论(0) 推荐(0) 编辑
摘要:涉及对象: 两个输入框,一个按钮。 代码功能: 随时监测输入框内容的长度变化,并在输入内容不符合预设要求时,立即改变输入框背景色。 在两个输入框的内容都符合预设要求时,按钮才可用。 阅读全文
posted @ 2016-04-10 15:49 Ficow 阅读(376) 评论(0) 推荐(0) 编辑
摘要:详细可参考:http://www.tuicool.com/articles/BjMrQne 阅读全文
posted @ 2016-04-07 18:51 Ficow 阅读(159) 评论(0) 推荐(0) 编辑
摘要:@@ 是创建 NSURL 的字面量的绝佳方法(例如:@@"http://example.com") 阅读全文
posted @ 2016-04-07 08:03 Ficow 阅读(197) 评论(0) 推荐(0) 编辑
摘要:github地址: https://github.com/AFNetworking/AFOAuth2Manager 这个库,不多说,实现OAuth 2.0授权访问。 确实可以减轻很大的负担,而且使用很容易。 完成 OAuth 2.0授权认证 大概就这几步: 1.按照后台给的参数,向服务器请求toke 阅读全文
posted @ 2016-04-03 22:56 Ficow 阅读(1715) 评论(0) 推荐(0) 编辑
摘要:1.打开终端,进入到对应的git 目录,也就是你的项目目录。 2.然后输入 git reflog,找到自己commit的版本 3.根据对应的编码输入指令,如:git checkout e53fa44(这个e53fa44是HEAD@前面显示的那个编码) 4.最后,git checkout -b bac 阅读全文
posted @ 2016-04-02 20:41 Ficow 阅读(1016) 评论(0) 推荐(0) 编辑