摘要: 第一种: DataSet ds=new DataSet (); this.dataGridView1.DataSource=ds.Table[0]; 第二种: DataTable dt=new DataTable(); this.dataGridView1.DataSource=dt; 第三种: DataSet ds=new DataSet (); this.data... 阅读全文
posted @ 2016-06-09 11:57 Ficow 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 54个技巧 57个技巧 正则表达式 阅读全文
posted @ 2016-06-07 21:35 Ficow 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 配合Go2Shell使用,效果更佳!我建议你去商店下载它! 先去官网下载软件, 然后可以看看这一篇简明教程。 这里,还有一点点干货也一起带走吧! open -a Go2Shell --args config 阅读全文
posted @ 2016-06-07 12:56 Ficow 阅读(285) 评论(0) 推荐(0) 编辑
摘要: Ray Wenderlich AppCoda(English) AppCoda(TW) Awesome iOS Code4App代码库 CocoaChina代码库 oschina代码库 CocoaChina专题 CocoaChina每周精华 Objc中国 期刊 Swifter Mattt Thomp 阅读全文
posted @ 2016-06-02 15:21 Ficow 阅读(251) 评论(0) 推荐(0) 编辑
摘要: 先来看一个可能会遇到的问题: 如果你已经删除了xcode为你的项目自动生成的LaunchScreen.storyboard, 然后你在测试你的app的时候发现,屏幕里出现了黑色的区域,如上图(画红线的区域): 那么,你需要重新设置一下xcode里面的一些选项,并且用代码来实现启动画面的自定义。 首先 阅读全文
posted @ 2016-06-02 14:47 Ficow 阅读(4588) 评论(0) 推荐(0) 编辑
摘要: 也可以去我的简书页面查看这篇文章 首先: 1.做iOS消息推送需要真机测试 2.做iOS消息推送需要有付费的开发者账号 是否继续看帖? 先学习一下相关的知识吧! 因为中途可能会遇到一些问题,这篇文章或许能够帮助你解决它们。 iOS Provisioning Profile(Certificate)与 阅读全文
posted @ 2016-06-02 14:04 Ficow 阅读(2318) 评论(0) 推荐(0) 编辑
摘要: 将你自己博客园博客的主题设置为lessismore, 然后,禁用模板默认CSS。 接着添加页脚代码,通过JS动态修改左侧cover层的颜色,总共有6种颜色可选,CSS里搜索/*Skins*/即可找到: 非常感谢:http://www.cnblogs.com/brycezhang/p/5219510. 阅读全文
posted @ 2016-06-01 13:13 Ficow 阅读(218) 评论(0) 推荐(0) 编辑
摘要: // Get the instance of the UITextField of the search bar UITextField *searchField = [searchBar valueForKey:@"_searchField"]; // Change search bar text color searchField.textColor = [UIColor red... 阅读全文
posted @ 2016-05-28 16:45 Ficow 阅读(599) 评论(0) 推荐(0) 编辑
摘要: 1.终端输入: 如果放在了应用程序里,就是这个: defaults read /Applications/Xcode.app/Contents/Info DVTPlugInCompatibilityUUID 如果放在了别的地方,比如用户根目录: defaults read ~/Xcode.app/C 阅读全文
posted @ 2016-04-29 07:33 Ficow 阅读(153) 评论(0) 推荐(0) 编辑
摘要: /** * 当前用户是管理员的时候,直接启动应用程序 * 如果不是管理员,则使用启动对象启动程序,以确保使用管理员身份运行 */ //获得当前登录的Windows用户标示 //URL:http://www.bianceng.cn/Programming/cshar... 阅读全文
posted @ 2016-04-26 21:13 Ficow 阅读(1635) 评论(0) 推荐(0) 编辑
摘要: 1.this.Close(); 只是关闭当前窗口,若不是主窗体的话,是无法退出程序的,另外若有托管线程(非主线程),也无法干净地退出; 2.Application.Exit(); 强制所有消息中止,退出所有的窗体,但是若有托管线程(非主线程),也无法干净地退出; 3.Application.Exit 阅读全文
posted @ 2016-04-26 18:38 Ficow 阅读(683) 评论(0) 推荐(0) 编辑
摘要: 顺便附上 MacDown的官网,我觉得MacDown挺好用的,推荐给大家! #一级标题 ##二级标题 ###三级标题 ####四级标题 #####五级标题 ######六级标题 *** ###使用分割线 *** ###使用*加空格 来使用无序列表 * 1 * 2 * 3 *** ###用数字加.加空 阅读全文
posted @ 2016-04-25 17:02 Ficow 阅读(1161) 评论(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 阅读(340) 评论(0) 推荐(0) 编辑
摘要: using System.Text.RegularExpressions; 阅读全文
posted @ 2016-04-24 21:14 Ficow 阅读(10674) 评论(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 阅读(1023) 评论(0) 推荐(0) 编辑
摘要: 打开终端,输入: 阅读全文
posted @ 2016-04-21 21:47 Ficow 阅读(3277) 评论(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 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 在block中常常会用到self,可是会造成循环引用。这时候就需要这样来解决这个问题: 阅读全文
posted @ 2016-04-15 14:57 Ficow 阅读(240) 评论(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 阅读(394) 评论(0) 推荐(0) 编辑
摘要: Associated Objects: Swizzling: 阅读全文
posted @ 2016-04-12 19:25 Ficow 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 1. 2. 阅读全文
posted @ 2016-04-12 15:56 Ficow 阅读(495) 评论(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 阅读(161) 评论(0) 推荐(0) 编辑
摘要: 参考资料:http://nshipster.com/c-storage-classes/ 阅读全文
posted @ 2016-04-10 20:27 Ficow 阅读(5045) 评论(0) 推荐(0) 编辑
摘要: 涉及对象: 两个输入框,一个按钮。 代码功能: 随时监测输入框内容的长度变化,并在输入内容不符合预设要求时,立即改变输入框背景色。 在两个输入框的内容都符合预设要求时,按钮才可用。 阅读全文
posted @ 2016-04-10 15:49 Ficow 阅读(375) 评论(0) 推荐(0) 编辑
摘要: 详细可参考:http://www.tuicool.com/articles/BjMrQne 阅读全文
posted @ 2016-04-07 18:51 Ficow 阅读(158) 评论(0) 推荐(0) 编辑
摘要: @@ 是创建 NSURL 的字面量的绝佳方法(例如:@@"http://example.com") 阅读全文
posted @ 2016-04-07 08:03 Ficow 阅读(196) 评论(0) 推荐(0) 编辑
摘要: github地址: https://github.com/AFNetworking/AFOAuth2Manager 这个库,不多说,实现OAuth 2.0授权访问。 确实可以减轻很大的负担,而且使用很容易。 完成 OAuth 2.0授权认证 大概就这几步: 1.按照后台给的参数,向服务器请求toke 阅读全文
posted @ 2016-04-03 22:56 Ficow 阅读(1714) 评论(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 阅读(1013) 评论(0) 推荐(0) 编辑
摘要: NSString *oldPrice = [NSString stringWithFormat:@"原价 %@",_item.previousPrice.stringValue]; NSMutableAttributedString *attr = [[NSMutableAttributedString alloc]initWithString:oldPrice]; [att... 阅读全文
posted @ 2016-03-27 23:57 Ficow 阅读(285) 评论(0) 推荐(0) 编辑
摘要: 1. http://blog.csdn.net/chenyufeng1991/article/details/50478656 阅读全文
posted @ 2016-03-26 15:55 Ficow 阅读(126) 评论(0) 推荐(0) 编辑
摘要: 1.在view不是很复杂的情况下,如果多次检查后依旧出现coding-compliant这种情况,干脆彻底删除这个xib重新新建一个xib来做一遍。(至今未明真相) 2.初始化xib中的view的大致步骤: 3.如果view需要响应事件,且将view添加到superView后,view不响应事件,可 阅读全文
posted @ 2016-03-22 23:46 Ficow 阅读(414) 评论(0) 推荐(0) 编辑
摘要: 如果是代码实现,直接 在CGRectMake里把对应的参数设置为: 1.0/[UIScreenmainScreen].scale 即可。 如果是用xib实现,就需要将对应的限制拖一个IBOutlet到对应类的.m文件中,如下图, Outlet如下: 然后在ViewDidLoad时,设置其参数即可: 阅读全文
posted @ 2016-03-20 10:49 Ficow 阅读(827) 评论(0) 推荐(0) 编辑
摘要: 在需要使用tab来选中并输入内容的地方,添加: <#输入待覆盖的内容#> 阅读全文
posted @ 2016-03-20 00:27 Ficow 阅读(389) 评论(0) 推荐(0) 编辑
摘要: 在应用的 Info.plist 文件中添加以下代码: 阅读全文
posted @ 2016-03-19 21:05 Ficow 阅读(769) 评论(0) 推荐(0) 编辑
摘要: // 后台执行: dispatch_async(dispatch_get_global_queue(0, 0), ^{ // something }); // 主线程执行: dispatch_async(dispatch_get_main_queue(), ^{ // something }); // 一次性执行: static dispatch_once_t onceTo... 阅读全文
posted @ 2016-03-18 23:47 Ficow 阅读(221) 评论(0) 推荐(0) 编辑
摘要: #! /bin/bashmv ~/Library/Developer/Xcode/UserData/CodeSnippets ~/Library/Developer/Xcode/UserData/CodeSnippets.backup # rm ~/Library/Developer/Xcode/U 阅读全文
posted @ 2016-03-18 15:09 Ficow 阅读(262) 评论(0) 推荐(0) 编辑
摘要: C指针声明解读之左右法则 C语言所有复杂的指针声明,都是由各种声明嵌套构成的。如何解读复杂指针声明呢?右左法则是一个既著名又常用的方法。不过,右左法则其实并不是C标准里面的内容,它是从C标准的声明规定中归纳出来的方法。C标准的声明规则,是用来解决如何创建声明的,而右左法则是用来解决如何辩识一个声明的 阅读全文
posted @ 2016-03-16 08:46 Ficow 阅读(816) 评论(3) 推荐(1) 编辑
摘要: Objective-C中属性self.a与_a访问的区别: 在OC中我们可以通过指令@property定义属性。 OC对属性封装了许多方法,同时也会自动实现一些方法,相比实例变量,感觉更加面向对象些。 一般定义属性的方法如下,在Class Test中定义属性int a。 在类的实例方法中,我们可以用 阅读全文
posted @ 2016-03-09 08:53 Ficow 阅读(1052) 评论(0) 推荐(0) 编辑
摘要: 在终端执行: pod install --no-repo-update 如果是更新操作,执行: pod update --no-repo-update 阅读全文
posted @ 2016-03-07 14:44 Ficow 阅读(728) 评论(0) 推荐(0) 编辑
摘要: //遍历footerview约束(一般高,宽) NSArray* constrains = self.footerView.constraints; for (NSLayoutConstraint* constraint in constrains) { if (constraint.f... 阅读全文
posted @ 2016-03-01 15:39 Ficow 阅读(847) 评论(0) 推荐(0) 编辑